mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 17:28:00 +00:00
387c31598d
* async txpool API * Update core/rpc/src/author/mod.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update core/transaction-pool/graph/src/pool.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Pool -> Pool + ValidatedPool * removed lost block_on when importing xt from network * fix grumbles * alias for future::Executor in rpc * removed executor from Author RPCs * Pool + SharedValidatedPool -> Pool * fix compilation after merge * another fix * another fix
28 lines
1.0 KiB
TOML
28 lines
1.0 KiB
TOML
[package]
|
|
name = "node-rpc"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
jsonrpc-core = "13.2.0"
|
|
jsonrpc-core-client = "13.2.0"
|
|
jsonrpc-derive = "13.2.0"
|
|
jsonrpc-pubsub = "13.2.0"
|
|
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
|
|
log = "0.4"
|
|
node-primitives = { path = "../primitives" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
rpc-primitives = { package = "substrate-rpc-primitives", path = "../../core/rpc/primitives" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
node-testing = { path = "../testing" }
|
|
node-runtime = { path = "../runtime" }
|
|
env_logger = "0.6"
|
|
futures03 = { package = "futures-preview", version = "=0.3.0-alpha.18" }
|