mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
6da9f59d72
* primitives/sr-std -> primitives/std * fix * fix conflict * rstd -> sp-std * git mv * fix review * fix merge
19 lines
490 B
TOML
19 lines
490 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 = "sp-inherents", path = "../../primitives/inherents", default-features = false }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"inherents/std",
|
|
]
|