mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 21:58:06 +00:00
6a6c3155a6
* use DB backend in test client * Update core/client/db/src/lib.rs Co-Authored-By: svyatonik <svyatonik@gmail.com>
19 lines
896 B
TOML
19 lines
896 B
TOML
[package]
|
|
name = "substrate-test-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../client" }
|
|
client-db = { package = "substrate-client-db", path = "../client/db", features = ["test-helpers"] }
|
|
futures = { version = "0.1.17" }
|
|
parity-codec = "3.0"
|
|
executor = { package = "substrate-executor", path = "../executor" }
|
|
consensus = { package = "substrate-consensus-common", path = "../consensus/common" }
|
|
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
state_machine = { package = "substrate-state-machine", path = "../state-machine" }
|
|
runtime = { package = "substrate-test-runtime", path = "../test-runtime" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives" }
|