mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 10:18:02 +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
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "paint-timestamp"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../primitives/sr-std", default-features = false }
|
|
sr-primitives = { path = "../../primitives/sr-primitives", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../primitives/inherents", default-features = false }
|
|
support = { package = "paint-support", path = "../support", default-features = false }
|
|
system = { package = "paint-system", path = "../system", default-features = false }
|
|
sp-timestamp = { path = "../../primitives/timestamp", default-features = false }
|
|
impl-trait-for-tuples = "0.1.3"
|
|
|
|
[dev-dependencies]
|
|
runtime-io ={ package = "sr-io", path = "../../primitives/sr-io" }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives/core" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"inherents/std",
|
|
"codec/std",
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
"support/std",
|
|
"serde",
|
|
"system/std",
|
|
"sp-timestamp/std"
|
|
]
|