From a0302d4fdb9cf64bdffecc1864400dde64f052fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Mar 2021 13:21:03 +0100 Subject: [PATCH] Bump hashbrown from 0.9.1 to 0.11.0 (#244) Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.9.1 to 0.11.0. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.9.1...v0.11.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 36 +++++++++++++++++++++------- substrate-archive-backend/Cargo.toml | 2 +- substrate-archive/Cargo.toml | 2 +- 3 files changed, 30 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67ad402f..3e3fcd0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -96,6 +96,17 @@ dependencies = [ "version_check", ] +[[package]] +name = "ahash" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f200cbb1e856866d9eade941cf3aa0c5d7dd36f74311c4273b494f4ef036957" +dependencies = [ + "getrandom 0.2.0", + "once_cell", + "version_check", +] + [[package]] name = "aho-corasick" version = "0.7.15" @@ -2158,13 +2169,22 @@ dependencies = [ "ahash 0.4.6", ] +[[package]] +name = "hashbrown" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5" +dependencies = [ + "ahash 0.7.2", +] + [[package]] name = "hashlink" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d99cf782f0dc4372d26846bec3de7804ceb5df083c2d4462c0b8d2330e894fa8" dependencies = [ - "hashbrown", + "hashbrown 0.9.1", ] [[package]] @@ -2490,7 +2510,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.9.1", "serde", ] @@ -3350,7 +3370,7 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3aae342b73d57ad0b8b364bd12584819f2c1fe9114285dfcf8b0722607671635" dependencies = [ - "hashbrown", + "hashbrown 0.9.1", ] [[package]] @@ -3441,7 +3461,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6cbd2a22f201c03cc1706a727842490abfea17b7b53260358239828208daba3c" dependencies = [ "hash-db", - "hashbrown", + "hashbrown 0.9.1", "parity-util-mem", ] @@ -4497,7 +4517,7 @@ checksum = "8f17f15cb05897127bf36a240085a1f0bbef7bce3024849eccf7f93f6171bc27" dependencies = [ "cfg-if 1.0.0", "ethereum-types", - "hashbrown", + "hashbrown 0.9.1", "impl-trait-for-tuples 0.2.0", "lru", "parity-util-mem-derive", @@ -8377,7 +8397,7 @@ dependencies = [ "flate2", "flume", "futures 0.3.13", - "hashbrown", + "hashbrown 0.11.0", "hex", "itertools 0.10.0", "itoa", @@ -8419,7 +8439,7 @@ dependencies = [ "arc-swap", "futures 0.3.13", "hash-db", - "hashbrown", + "hashbrown 0.11.0", "kvdb", "kvdb-rocksdb", "log", @@ -9089,7 +9109,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5cc176c377eb24d652c9c69c832c832019011b6106182bf84276c66b66d5c9a6" dependencies = [ "hash-db", - "hashbrown", + "hashbrown 0.9.1", "log", "rustc-hex", "smallvec 1.6.1", diff --git a/substrate-archive-backend/Cargo.toml b/substrate-archive-backend/Cargo.toml index f94efac7..7fedd06c 100644 --- a/substrate-archive-backend/Cargo.toml +++ b/substrate-archive-backend/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" # External arc-swap = "1.2.0" futures = "0.3" -hashbrown = { version = "0.9", features = ["inline-more"] } +hashbrown = { version = "0.11", features = ["inline-more"] } log = "0.4" num_cpus = "1.13" parking_lot = "0.11" diff --git a/substrate-archive/Cargo.toml b/substrate-archive/Cargo.toml index 09f9f4cb..ea14d3da 100644 --- a/substrate-archive/Cargo.toml +++ b/substrate-archive/Cargo.toml @@ -14,7 +14,7 @@ fdlimit = "0.2" fern = { version = "0.6", features = ["colored"] } flume = "0.10.2" futures = "0.3" -hashbrown = { version = "0.9", features = ["inline-more"] } +hashbrown = { version = "0.11", features = ["inline-more"] } hex = "0.4" itertools = "0.10" itoa = "0.4.7"