mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
303843f483
* Split Aura and Timestamp inherents out of paint * fixup node depedencies * move babe inherents to primitives * move authorship inherents into primitives * Move finalty tracker inherents into primitives * fix aura primitives import
24 lines
705 B
TOML
24 lines
705 B
TOML
[package]
|
|
name = "sp-timestamp"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
sr-api = { path = "../sr-api", default-features = false }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
sr-primitives = { path = "../sr-primitives", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
inherents = { package = "substrate-inherents", path = "../inherents", default-features = false }
|
|
impl-trait-for-tuples = "0.1.3"
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sr-api/std",
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
"codec/std",
|
|
"inherents/std",
|
|
]
|