mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 16:41:10 +00:00
8207b4fceb
This reverts commit c0a1926704.
25 lines
840 B
TOML
25 lines
840 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 }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", 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.101", optional = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"client/std",
|
|
"codec/std",
|
|
"sr-primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
"app-crypto/std",
|
|
]
|