mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +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>
26 lines
1.4 KiB
TOML
26 lines
1.4 KiB
TOML
[package]
|
|
name = "node-rpc"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
sc-client = { version = "0.8", path = "../../../client/" }
|
|
jsonrpc-core = "14.0.3"
|
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
|
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
|
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
|
pallet-contracts-rpc = { version = "0.8", path = "../../../frame/contracts/rpc/" }
|
|
pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
|
substrate-frame-rpc-system = { version = "2.0.0", path = "../../../utils/frame/rpc/system" }
|
|
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
|
sc-consensus-babe = { version = "0.8", path = "../../../client/consensus/babe" }
|
|
sc-consensus-babe-rpc = { version = "0.8", path = "../../../client/consensus/babe/rpc" }
|
|
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" }
|
|
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" }
|
|
sc-consensus-epochs = { version = "0.8", path = "../../../client/consensus/epochs" }
|
|
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|