mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +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
19 lines
516 B
TOML
19 lines
516 B
TOML
[package]
|
|
name = "sp-finality-tracker"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
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 }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"rstd/std",
|
|
"inherents/std",
|
|
]
|