mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 08:51:04 +00:00
7773daaf5b
* rename crate: sp-transaction-pool-api -> sp-transaction-pool * move primitives/core/derive-debug -> primitives/derive-debug; primitives/core/storage -> primitives/storage * rename crate sp-core-storage -> sp-storage * rename and move: test/utils/transaction-factory -> client/transaction-factory * move transaction-factory -> node/transaction-factory * fix missing rename * Move chain-spec-builder into bin/utils * move subkey into bin/utils * Update new subkey location * Update docs to reflect new location for utils * fixing import name
22 lines
834 B
TOML
22 lines
834 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"
|
|
futures = "0.1.29"
|
|
log = "0.4.8"
|
|
env_logger = "0.7.0"
|
|
fdlimit = "0.1.1"
|
|
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
|
|
service = { package = "sc-service", path = "../../service", default-features = false }
|
|
network = { package = "sc-network", path = "../../network" }
|
|
consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
|
client = { package = "sc-client", path = "../../" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core" }
|
|
txpool-api = { package = "sp-transaction-pool", path = "../../../primitives/transaction-pool" }
|