Upgrade kvdb-*, trie-db and memory-db (#6584)

* Upgrade `kvdb-*`, `trie-db` and `memory-db`

The updates of `trie-db` and `memory-db` are important, as they fix the
non-deterministic build of Polkadot/Substrate.

* Change `trie-db` version

* Update test-utils/runtime/Cargo.toml

Co-authored-by: Andronik Ordian <write@reusable.software>

* Update primitives/trie/Cargo.toml

Co-authored-by: Andronik Ordian <write@reusable.software>

* Update `Cargo.lock` and `trie-bench`

* Fix UI tests

* Switch to fixed version of memory-db

Co-authored-by: Andronik Ordian <write@reusable.software>
This commit is contained in:
Bastian Köcher
2020-07-08 10:42:56 +02:00
committed by GitHub
parent a6702b7121
commit ce0b55ff09
19 changed files with 136 additions and 78 deletions
+3 -3
View File
@@ -20,13 +20,13 @@ harness = false
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../std" }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.21.0", default-features = false }
trie-db = { version = "0.22.0", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
memory-db = { version = "0.21.0", default-features = false }
memory-db = { version = "0.24.0", default-features = false }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../core" }
[dev-dependencies]
trie-bench = "0.22.0"
trie-bench = "0.24.0"
trie-standardmap = "0.15.2"
criterion = "0.2.11"
hex-literal = "0.2.1"