mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 17:28:00 +00:00
ad2d958248
* Make test-client generic over runtime. * Make sure genesis storage is constructed correctly. * Use prelude in tests. * Add an example of how to use test-client with node/runtime. * Bump version. * Rename test-clients.
40 lines
1.7 KiB
TOML
40 lines
1.7 KiB
TOML
[package]
|
|
name = "substrate-service"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.14.0"
|
|
futures = "0.1.17"
|
|
parking_lot = "0.8.0"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
slog = {version = "^2", features = ["nested-values"]}
|
|
tokio = "0.1.7"
|
|
exit-future = "0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
target_info = "0.1"
|
|
keystore = { package = "substrate-keystore", path = "../../core/keystore" }
|
|
sr-io = { path = "../../core/sr-io" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
client_db = { package = "substrate-client-db", path = "../../core/client/db", features = ["kvdb-rocksdb"] }
|
|
parity-codec = "3.3"
|
|
substrate-executor = { path = "../../core/executor" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
rpc = { package = "substrate-rpc-servers", path = "../../core/rpc-servers" }
|
|
tel = { package = "substrate-telemetry", path = "../../core/telemetry" }
|
|
offchain = { package = "substrate-offchain", path = "../../core/offchain" }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { path = "../test-runtime/client" }
|
|
node-executor = { path = "../../node/executor" }
|
|
node-primitives = { path = "../../node/primitives" }
|
|
node-runtime = { path = "../../node/runtime" }
|
|
grandpa = { package = "substrate-finality-grandpa", path = "../../core/finality-grandpa" }
|