mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
376deef36f
* Export crypto_full feature in primitives/finality-grandpa * Export GRANDPA AuthorityPair when full_crypto is enabled
29 lines
879 B
TOML
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"
|
|
]
|