mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 04:47:59 +00:00
3219be2508
* Switch service to futures03 * Fix tests * Fix service test and cli * Re-add Executor trait to SpawnTaskHandle * Fix node-service * Update babe * Fix browser node * Update aura * Revert back to tokio-executor to fix runtime panic * Add todo item * Fix service tests again * Timeout test futures * Fix tests * nits * Fix service test * Remove zstd patch * Re-add futures01 to aura and babe tests as a dev-dep * Change failing test to tee * Fix node * Upgrade tokio * fix society * Start switching grandpa to stable futures * Revert "Start switching grandpa to stable futures" This reverts commit 9c1976346237637effc07c13f7d0403daf5e71cf. * Fix utils * Revert substrate service test * Revert gitlab Co-authored-by: thiolliere <gui.thiolliere@gmail.com>
22 lines
844 B
TOML
22 lines
844 B
TOML
[package]
|
|
name = "sc-service-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tempfile = "3.1.0"
|
|
tokio = "0.1.22"
|
|
futures01 = { package = "futures", version = "0.1.29" }
|
|
log = "0.4.8"
|
|
env_logger = "0.7.0"
|
|
fdlimit = "0.1.1"
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
sc-service = { version = "2.0.0", default-features = false, path = "../../service" }
|
|
sc-network = { version = "0.8", path = "../../network" }
|
|
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
|
|
sc-client = { version = "2.0.0", path = "../../" }
|
|
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
|
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
|
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|