From 4aac1386480cdb6f91ecd7d498f3ca55f491f9bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 May 2022 18:27:45 +0000 Subject: [PATCH] Update hashbrown requirement from 0.11 to 0.12 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [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.11.0...v0.12.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- metrics-util/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index 158b8e34..52668244 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -59,7 +59,7 @@ radix_trie = { version = "0.2", default-features = false, optional = true } ordered-float = { version = "2.0", default-features = false, optional = true } num_cpus = { version = "1", default-features = false, optional = true } ahash = { version = "0.7", default-features = false, optional = true } -hashbrown = { version = "0.11", default-features = false, optional = true, features = ["ahash"] } +hashbrown = { version = "0.12", default-features = false, optional = true, features = ["ahash"] } [dev-dependencies] approx = "0.5"