mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 03:18:01 +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>
40 lines
1.8 KiB
TOML
40 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-finality-grandpa-rpc"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "RPC extensions for the GRANDPA finality gadget"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
sc-finality-grandpa = { version = "0.9.0", path = "../" }
|
|
sc-rpc = { version = "3.0.0", path = "../../rpc" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
|
finality-grandpa = { version = "0.14.0", features = ["derive-codec"] }
|
|
jsonrpc-core = "15.1.0"
|
|
jsonrpc-core-client = "15.1.0"
|
|
jsonrpc-derive = "15.1.0"
|
|
jsonrpc-pubsub = "15.1.0"
|
|
futures = { version = "0.3.4", features = ["compat"] }
|
|
serde = { version = "1.0.105", features = ["derive"] }
|
|
serde_json = "1.0.50"
|
|
log = "0.4.8"
|
|
derive_more = "0.99.2"
|
|
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
|
|
|
[dev-dependencies]
|
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
|
sc-rpc = { version = "3.0.0", path = "../../rpc", features = ["test-helpers"] }
|
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
sp-finality-grandpa = { version = "3.0.0", path = "../../../primitives/finality-grandpa" }
|
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
|
lazy_static = "1.4"
|