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