Files
pezkuwi-subxt/substrate/client/db/Cargo.toml
T
Bastian Köcher 3da736fdf6 Update kvdb-rocksdb again (#4236)
* Update kvdb-rocksdb again

* Switch to released crates

* Remove last git references
2019-11-29 11:32:44 +01:00

36 lines
1.4 KiB
TOML

[package]
name = "substrate-client-db"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
parking_lot = "0.9.0"
log = "0.4.8"
kvdb = "0.1.1"
kvdb-rocksdb = { version = "0.2", optional = true }
kvdb-memorydb = "0.1.2"
linked-hash-map = "0.5.2"
hash-db = "0.15.2"
client-api = { package = "substrate-client-api", path = "../api" }
primitives = { package = "substrate-primitives", path = "../../primitives/core" }
sr-primitives = { path = "../../primitives/sr-primitives" }
client = { package = "substrate-client", path = "../" }
state-machine = { package = "substrate-state-machine", path = "../../primitives/state-machine" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
executor = { package = "substrate-executor", path = "../executor" }
state_db = { package = "substrate-state-db", path = "../state-db" }
trie = { package = "substrate-trie", path = "../../primitives/trie" }
consensus_common = { package = "substrate-consensus-common", path = "../../primitives/consensus/common" }
sp-blockchain = { path = "../../primitives/blockchain" }
[dev-dependencies]
substrate-keyring = { path = "../../primitives/keyring" }
test-client = { package = "substrate-test-runtime-client", path = "../../test/utils/runtime/client" }
env_logger = "0.7.0"
quickcheck = "0.9"
[features]
default = []
test-helpers = []