mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 15:11:02 +00:00
8b89c7ae62
* update parity-scale codec minor version * update to 3.5.3 * update locks * increase impl version * Update to 3.5.4 * Update WASM lockfiles
25 lines
788 B
TOML
25 lines
788 B
TOML
[package]
|
|
name = "substrate-finality-grandpa-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../client", default-features = false }
|
|
substrate-primitives = { path = "../../primitives", default-features = false }
|
|
parity-codec = { version = "3.5.4", default-features = false, features = ["derive"] }
|
|
sr-primitives = { path = "../../sr-primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../sr-std", default-features = false }
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-primitives/std",
|
|
"client/std",
|
|
"parity-codec/std",
|
|
"sr-primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
]
|