mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 01:11:04 +00:00
91989cab46
* Adds `with_pair!` macro to application-crypto This macro will "generate" the given code only when the crypto pair is available. So, when either the `std` or the `full_crypto` feature is enabled. * Fix example
26 lines
822 B
TOML
26 lines
822 B
TOML
[package]
|
|
name = "sp-finality-grandpa"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
sp-application-crypto = { version = "2.0.0", default-features = false, 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 = [
|
|
"sp-application-crypto/std",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
]
|