From 18c50dab56fef657be08dcded8e41987906d0f93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:20:18 +0000 Subject: [PATCH] Bump trie-db from 0.27.1 to 0.28.0 Bumps [trie-db](https://github.com/paritytech/trie) from 0.27.1 to 0.28.0. - [Commits](https://github.com/paritytech/trie/compare/trie-db-v0.27.1...trie-db-v0.28.0) --- updated-dependencies: - dependency-name: trie-db dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++++----- primitives/runtime/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ae960773ff3..1263e5702d67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1428,7 +1428,7 @@ dependencies = [ "sp-state-machine", "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", "sp-trie", - "trie-db", + "trie-db 0.28.0", ] [[package]] @@ -2581,7 +2581,7 @@ dependencies = [ "sp-trie", "sp-version", "staging-xcm", - "trie-db", + "trie-db 0.27.1", ] [[package]] @@ -13859,7 +13859,7 @@ dependencies = [ "sp-trie", "thiserror", "tracing", - "trie-db", + "trie-db 0.27.1", ] [[package]] @@ -13978,7 +13978,7 @@ dependencies = [ "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", "thiserror", "tracing", - "trie-db", + "trie-db 0.27.1", "trie-root", ] @@ -14627,7 +14627,7 @@ dependencies = [ "sp-runtime", "sp-state-machine", "sp-trie", - "trie-db", + "trie-db 0.27.1", ] [[package]] @@ -15384,6 +15384,19 @@ dependencies = [ "smallvec", ] +[[package]] +name = "trie-db" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642" +dependencies = [ + "hash-db", + "hashbrown 0.13.2", + "log", + "rustc-hex", + "smallvec", +] + [[package]] name = "trie-root" version = "0.18.0" diff --git a/primitives/runtime/Cargo.toml b/primitives/runtime/Cargo.toml index a5583c6b9888..6872ffd98486 100644 --- a/primitives/runtime/Cargo.toml +++ b/primitives/runtime/Cargo.toml @@ -25,7 +25,7 @@ sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "mas sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } -trie-db = { version = "0.27.1", default-features = false } +trie-db = { version = "0.28.0", default-features = false } [dev-dependencies] hex-literal = "0.4"