From 13cccbf4067721def0092bd8ae3b15a1aa13592c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jul 2023 05:46:49 +0000 Subject: [PATCH] chore(deps): Bump hashbrown from 0.13.2 to 0.14.0 Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.13.2 to 0.14.0. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.13.2...v0.14.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 ++++++++++--------- common/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e539f848e2..fa17b9be5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,6 +87,12 @@ dependencies = [ "generic-array", ] +[[package]] +name = "allocator-api2" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" + [[package]] name = "android_system_properties" version = "0.1.5" @@ -1859,19 +1865,14 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.13.2" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" dependencies = [ + "allocator-api2", "serde", ] -[[package]] -name = "hashbrown" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" - [[package]] name = "headers" version = "0.3.8" @@ -2845,7 +2846,7 @@ dependencies = [ "cfg-if 1.0.0", "chrono", "displaydoc", - "hashbrown 0.13.2", + "hashbrown 0.14.0", "hex", "hex_fmt", "hostname", diff --git a/common/Cargo.toml b/common/Cargo.toml index 001c6e05c4..f7b3aebc9a 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -50,7 +50,7 @@ backtrace = { version = "0.3", optional = true } cfg-if = "1.0" chrono = { version = "0.4", optional = true } displaydoc = { version = "0.2", default-features = false } -hashbrown = { version = "0.13.2", default-features = false, features = ["serde", "nightly"] } +hashbrown = { version = "0.14.0", default-features = false, features = ["serde", "nightly"] } hex = { version = "0.4", default-features = false } hex_fmt = "0.3" hostname = { version = "0.3.1", optional = true }