[package] name = "substrate-client" version = "2.0.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] derive_more = { version = "0.15.0" } fnv = { version = "1.0.6" } log = { version = "0.4.8" } parking_lot = { version = "0.9.0" } hex-literal = { version = "0.2.1" } futures = { version = "0.1.29" } futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } consensus = { package = "substrate-consensus-common", path = "../consensus/common" } executor = { package = "substrate-executor", path = "../executor" } state-machine = { package = "substrate-state-machine", path = "../state-machine" } keyring = { package = "substrate-keyring", path = "../keyring" } trie = { package = "substrate-trie", path = "../trie" } substrate-telemetry = { path = "../telemetry" } hash-db = { version = "0.15.2" } kvdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } primitives = { package = "substrate-primitives", path = "../primitives" } sr-primitives = { path = "../sr-primitives" } runtime-version = { package = "sr-version", path = "../sr-version" } rstd = { package = "sr-std", path = "../sr-std" } inherents = { package = "substrate-inherents", path = "../inherents" } sr-api = { path = "../sr-api" } header-metadata = { package = "substrate-header-metadata", path = "header-metadata" } block-builder = { package = "substrate-block-builder", path = "../block-builder" } [dev-dependencies] env_logger = "0.7.0" tempfile = "3.1.0" client-db = { package = "substrate-client-db", path = "./db", features = ["kvdb-rocksdb"] } test-client = { package = "substrate-test-runtime-client", path = "../test-runtime/client" } kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }