Files
pezkuwi-subxt/substrate/srml/timestamp/Cargo.toml
T
Robert Habermeier 9bccc9661c CheckInherentError can now report when something would be valid (#1204)
* CheckInherentError can now report when something would be valid

* set timestamp inherent to next valid block time

* return max timestamp for valid-after when checking
2018-12-04 09:19:36 +01:00

34 lines
1.0 KiB
TOML

[package]
name = "srml-timestamp"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
hex-literal = "0.1.0"
serde = { version = "1.0", default-features = false }
parity-codec = { version = "2.1", default-features = false }
substrate-primitives = { path = "../../core/primitives", default-features = false }
sr-std = { path = "../../core/sr-std", default-features = false }
sr-io = { path = "../../core/sr-io", default-features = false }
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
srml-support = { path = "../support", default-features = false }
srml-system = { path = "../system", default-features = false }
srml-consensus = { path = "../consensus", default-features = false }
[dev-dependencies]
sr-io = { path = "../../core/sr-io", default-features = true }
[features]
default = ["std"]
std = [
"sr-std/std",
"sr-io/std",
"srml-support/std",
"sr-primitives/std",
"srml-consensus/std",
"serde/std",
"parity-codec/std",
"substrate-primitives/std",
"srml-system/std",
]