mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 22:58: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
21 lines
752 B
TOML
21 lines
752 B
TOML
[package]
|
|
name = "substrate-transaction-pool"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.14.0"
|
|
futures-preview = "=0.3.0-alpha.18"
|
|
log = "0.4"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
parking_lot = "0.9.0"
|
|
sr-primitives = { path = "../sr-primitives" }
|
|
client = { package = "substrate-client", path = "../client" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
txpool = { package = "substrate-transaction-graph", path = "./graph" }
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|