Files
pezkuwi-subxt/substrate/primitives/timestamp/Cargo.toml
T
Benjamin Kampmann 303843f483 Move inherents to primitives (#4126)
* 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
2019-11-20 12:18:36 +01:00

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",
]