-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
memory-db: update parity-util-mem (#166)
* bumps * remove patch
- Loading branch information
Showing
6 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "memory-db" | ||
version = "0.29.0" | ||
version = "0.30.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "In-memory implementation of hash-db, useful for tests" | ||
repository = "https://github.com/paritytech/trie" | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
parity-util-mem = { version = "0.11.0", default-features = false, features = ["hashbrown"] } | ||
parity-util-mem = { version = "0.12.0", default-features = false, features = ["hashbrown"] } | ||
hash-db = { version = "0.15.2", path = "../hash-db", default-features = false } | ||
hashbrown = { version = "0.12.0", default-features = false, features = [ "ahash" ] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "trie-bench" | ||
description = "Standard benchmarking suite for tries" | ||
version = "0.31.0" | ||
version = "0.32.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/trie/" | ||
license = "Apache-2.0" | ||
|
@@ -11,7 +11,7 @@ edition = "2018" | |
keccak-hasher = { path = "../keccak-hasher", version = "0.15.2" } | ||
trie-standardmap = { path = "../trie-standardmap", version = "0.15.2" } | ||
hash-db = { path = "../../hash-db" , version = "0.15.2"} | ||
memory-db = { path = "../../memory-db", version = "0.29.0" } | ||
memory-db = { path = "../../memory-db", version = "0.30.0" } | ||
trie-root = { path = "../../trie-root", version = "0.17.0" } | ||
trie-db = { path = "../../trie-db", version = "0.24.0" } | ||
criterion = "0.3.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "trie-db-test" | ||
version = "0.25.0" | ||
version = "0.26.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Tests for trie-db crate" | ||
repository = "https://github.com/paritytech/trie" | ||
|
@@ -15,7 +15,7 @@ harness = false | |
trie-db = { path = "..", version = "0.24.0"} | ||
hash-db = { path = "../../hash-db", version = "0.15.2"} | ||
rustc-hex = { version = "2.1.0" } | ||
memory-db = { path = "../../memory-db", version = "0.29.0" } | ||
memory-db = { path = "../../memory-db", version = "0.30.0" } | ||
rand = { version = "0.8", default-features = false, features = ["small_rng"] } | ||
trie-root = { path = "../../trie-root", version = "0.17.0"} | ||
trie-standardmap = { path = "../../test-support/trie-standardmap", version = "0.15.2" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters