mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 04:07:59 +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
799 B
TOML
21 lines
799 B
TOML
[package]
|
|
name = "substrate-service-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tempdir = "0.3"
|
|
tokio = "0.1.7"
|
|
futures = "0.1"
|
|
futures03 = { package = "futures-preview", version = "=0.3.0-alpha.18", features = ["compat"] }
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
fdlimit = "0.1"
|
|
service = { package = "substrate-service", path = "../../../core/service" }
|
|
network = { package = "substrate-network", path = "../../../core/network" }
|
|
consensus = { package = "substrate-consensus-common", path = "../../../core/consensus/common" }
|
|
client = { package = "substrate-client", path = "../../../core/client" }
|
|
sr-primitives = { path = "../../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../../core/primitives" }
|