i/o stats for backend databases (#4525)

This commit is contained in:
Nikolay Volf
2020-01-07 21:53:03 +03:00
committed by GitHub
parent 9500eb7590
commit df4058b556
16 changed files with 245 additions and 55 deletions
+6 -4
View File
@@ -7,17 +7,19 @@ edition = "2018"
[dependencies]
parking_lot = "0.9.0"
log = "0.4.8"
kvdb = "0.2.0"
kvdb-rocksdb = { version = "0.3", optional = true }
kvdb-memorydb = "0.2.0"
kvdb = "0.3.0"
kvdb-rocksdb = { version = "0.4", optional = true }
kvdb-memorydb = "0.3.0"
linked-hash-map = "0.5.2"
hash-db = "0.15.2"
parity-util-mem = { version = "0.4", default-features = false, features = ["std"] }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sc-client = { version = "2.0.0", path = "../" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sc-executor = { version = "2.0.0", path = "../executor" }
sc-state-db = { version = "2.0.0", path = "../state-db" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }