mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 05:38:00 +00:00
24739d1ab0
* grandpa: make the VotingRule api async * grandpa: add docs to VotingRuleResult * grandpa: formatting * grandpa: use async blocks Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * grandpa: expose VotingRuleResult * grandpa: revert some broken changes to async syntax * grandpa: use finality-grandpa v0.14.0 * grandpa: bump impl_version Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
43 lines
1.5 KiB
TOML
43 lines
1.5 KiB
TOML
[package]
|
|
name = "sp-finality-grandpa"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Primitives for GRANDPA integration, suitable for WASM compilation."
|
|
documentation = "https://docs.rs/sp-finality-grandpa"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
|
grandpa = { package = "finality-grandpa", version = "0.14.0", default-features = false, features = ["derive-codec"] }
|
|
log = { version = "0.4.8", optional = true }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
|
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" }
|
|
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
|
|
sp-keystore = { version = "0.9.0", default-features = false, path = "../keystore", optional = true }
|
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
|
|
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"log",
|
|
"serde",
|
|
"codec/std",
|
|
"grandpa/std",
|
|
"sp-api/std",
|
|
"sp-application-crypto/std",
|
|
"sp-core/std",
|
|
"sp-keystore",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|