mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 20:51:16 +00:00
5567d18b6a
* babe_epochAuthorship remove test-helpers from sp-keyring, bump spec_version, impl_version * bump Cargo.lock * add BabeRPC to node-rpc * rename to BabeApi, remove err_derive * pass &ServiceBuilder to with_rpc_extensions callback * sc-consensus-babe-rpc * Update client/consensus/babe/src/lib.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Better docs, code style chanegs Co-Authored-By: André Silva <andre.beat@gmail.com> * new line at the end of Cargo.toml Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> Co-authored-by: André Silva <andre.beat@gmail.com>
31 lines
1.3 KiB
TOML
31 lines
1.3 KiB
TOML
[package]
|
|
name = "sc-consensus-babe-rpc"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "RPC extensions for the BABE consensus algorithm"
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
sc-consensus-babe = { version = "0.8.0", path = "../" }
|
|
jsonrpc-core = "14.0.3"
|
|
jsonrpc-core-client = "14.0.3"
|
|
jsonrpc-derive = "14.0.3"
|
|
sp-consensus-babe = { version = "0.8", path = "../../../../primitives/consensus/babe" }
|
|
serde = { version = "1.0.104", features=["derive"] }
|
|
sp-blockchain = { version = "2.0.0", path = "../../../../primitives/blockchain" }
|
|
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" }
|
|
sc-consensus-epochs = { version = "0.8", path = "../../epochs" }
|
|
futures = "0.3.1"
|
|
derive_more = "0.99.2"
|
|
sp-api = { version = "2.0.0", path = "../../../../primitives/api" }
|
|
sp-consensus = { version = "0.8", path = "../../../../primitives/consensus/common" }
|
|
sp-core = { version = "2.0.0", path = "../../../../primitives/core" }
|
|
sc-keystore = { version = "2.0.0", path = "../../../keystore" }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
|
sp-application-crypto = { version = "2.0.0", path = "../../../../primitives/application-crypto" }
|
|
sp-keyring = { version = "2.0.0", path = "../../../../primitives/keyring" }
|
|
tempfile = "3.1.0"
|