Skip to content

Commit f1d1cff

Browse files
chemenathanwhit
authored andcommitted
update trie deps (paritytech#13601)
1 parent 8cf8033 commit f1d1cff

10 files changed

Lines changed: 30 additions & 31 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-au
3333
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
3434
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
3535
sp-tracing = { version = "6.0.0", path = "../../../primitives/tracing" }
36-
hash-db = "0.15.2"
36+
hash-db = "0.16.0"
3737
tempfile = "3.1.0"
3838
fs_extra = "1"
3939
rand = { version = "0.8.5", features = ["small_rng"] }

client/db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
codec = { package = "parity-scale-codec", version = "3.2.2", features = [
1717
"derive",
1818
] }
19-
hash-db = "0.15.2"
19+
hash-db = "0.16.0"
2020
kvdb = "0.13.0"
2121
kvdb-memorydb = "0.13.0"
2222
kvdb-rocksdb = { version = "0.17.0", optional = true }

primitives/api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sp-runtime = { version = "7.0.0", default-features = false, path = "../runtime"
2121
sp-version = { version = "5.0.0", default-features = false, path = "../version" }
2222
sp-state-machine = { version = "0.13.0", default-features = false, optional = true, path = "../state-machine" }
2323
sp-trie = { version = "7.0.0", default-features = false, optional = true, path = "../trie" }
24-
hash-db = { version = "0.15.2", optional = true }
24+
hash-db = { version = "0.16.0", optional = true }
2525
thiserror = { version = "1.0.30", optional = true }
2626

2727
log = { version = "0.4.17", default-features = false }

primitives/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde = { version = "1.0.136", optional = true, features = ["derive"] }
2323
bounded-collections = { version = "0.1.4", default-features = false }
2424
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info"] }
2525
impl-serde = { version = "0.4.0", optional = true }
26-
hash-db = { version = "0.15.2", default-features = false }
26+
hash-db = { version = "0.16.0", default-features = false }
2727
hash256-std-hasher = { version = "0.15.2", default-features = false }
2828
base58 = { version = "0.2.0", optional = true }
2929
rand = { version = "0.8.5", features = ["small_rng"], optional = true }

primitives/state-machine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1515

1616
[dependencies]
1717
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false }
18-
hash-db = { version = "0.15.2", default-features = false }
18+
hash-db = { version = "0.16.0", default-features = false }
1919
log = { version = "0.4.17", default-features = false }
2020
parking_lot = { version = "0.12.1", optional = true }
2121
rand = { version = "0.8.5", optional = true }
@@ -33,7 +33,7 @@ array-bytes = "4.1"
3333
pretty_assertions = "1.2.1"
3434
rand = "0.8.5"
3535
sp-runtime = { version = "7.0.0", path = "../runtime" }
36-
trie-db = "0.26.0"
36+
trie-db = "0.27.0"
3737
assert_matches = "1.5"
3838

3939
[features]

primitives/trie/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ harness = false
2121
ahash = { version = "0.8.2", optional = true }
2222
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false }
2323
hashbrown = { version = "0.12.3", optional = true }
24-
hash-db = { version = "0.15.2", default-features = false }
24+
hash-db = { version = "0.16.0", default-features = false }
2525
lazy_static = { version = "1.4.0", optional = true }
26-
memory-db = { version = "0.31.0", default-features = false }
26+
memory-db = { version = "0.32.0", default-features = false }
2727
nohash-hasher = { version = "0.2.0", optional = true }
2828
parking_lot = { version = "0.12.1", optional = true }
2929
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
3030
thiserror = { version = "1.0.30", optional = true }
3131
tracing = { version = "0.1.29", optional = true }
32-
trie-db = { version = "0.26.0", default-features = false }
33-
trie-root = { version = "0.17.0", default-features = false }
32+
trie-db = { version = "0.27.0", default-features = false }
33+
trie-root = { version = "0.18.0", default-features = false }
3434
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
3535
sp-std = { version = "5.0.0", default-features = false, path = "../std" }
3636
schnellru = { version = "0.2.1", optional = true }
3737

3838
[dev-dependencies]
3939
array-bytes = "4.1"
4040
criterion = "0.4.0"
41-
trie-bench = "0.36.0"
42-
trie-standardmap = "0.15.2"
41+
trie-bench = "0.37.0"
42+
trie-standardmap = "0.16.0"
4343
sp-runtime = { version = "7.0.0", path = "../runtime" }
4444

4545
[features]

test-utils/runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ codec = { package = "parity-scale-codec", version = "3.2.2", default-features =
2323
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
2424
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
2525
sp-keyring = { version = "7.0.0", optional = true, path = "../../primitives/keyring" }
26-
memory-db = { version = "0.31.0", default-features = false }
26+
memory-db = { version = "0.32.0", default-features = false }
2727
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../primitives/offchain" }
2828
sp-core = { version = "7.0.0", default-features = false, path = "../../primitives/core" }
2929
sp-std = { version = "5.0.0", default-features = false, path = "../../primitives/std" }
@@ -41,7 +41,7 @@ pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "..
4141
sp-consensus-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/consensus/grandpa" }
4242
sp-trie = { version = "7.0.0", default-features = false, path = "../../primitives/trie" }
4343
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../primitives/transaction-pool" }
44-
trie-db = { version = "0.26.0", default-features = false }
44+
trie-db = { version = "0.27.0", default-features = false }
4545
sc-service = { version = "0.10.0-dev", default-features = false, optional = true, features = ["test-helpers"], path = "../../client/service" }
4646
sp-state-machine = { version = "0.13.0", default-features = false, path = "../../primitives/state-machine" }
4747
sp-externalities = { version = "0.13.0", default-features = false, path = "../../primitives/externalities" }

utils/binary-merkle-tree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = "https://substrate.io"
1111
[dependencies]
1212
array-bytes = { version = "4.1", optional = true }
1313
log = { version = "0.4", default-features = false, optional = true }
14-
hash-db = { version = "0.15.2", default-features = false }
14+
hash-db = { version = "0.16.0", default-features = false }
1515

1616
[dev-dependencies]
1717
array-bytes = "4.1"

utils/frame/rpc/state-trie-migration-rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ log = { version = "0.4.17", default-features = false }
2121
sp-core = { path = "../../../../primitives/core" }
2222
sp-state-machine = { path = "../../../../primitives/state-machine" }
2323
sp-trie = { path = "../../../../primitives/trie" }
24-
trie-db = "0.26.0"
24+
trie-db = "0.27.0"
2525

2626
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
2727

0 commit comments

Comments
 (0)