Files
pezkuwi-subxt/substrate/primitives/finality-grandpa/Cargo.toml
T
h4x3rotab 376deef36f Export GRANDPA AuthorityPair when full_crypto is enabled (#4872)
* Export crypto_full feature in primitives/finality-grandpa

* Export GRANDPA AuthorityPair when full_crypto is enabled
2020-02-10 09:26:09 +01:00

29 lines
879 B
TOML

[package]
name = "sp-finality-grandpa"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
app-crypto = { version = "2.0.0", default-features = false, package = "sp-application-crypto", path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
[features]
default = ["std"]
std = [
"app-crypto/std",
"codec/std",
"sp-std/std",
"serde",
"sp-api/std",
"sp-runtime/std",
]
full_crypto = [
"app-crypto/full_crypto"
]