From 5843653bff52559163b6fc66a35b547322d9e012 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 19:54:35 +0000 Subject: [PATCH] Update hashbrown requirement from =0.13.1 to =0.14.3 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.13.1...v0.14.3) --- 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 574bd28c..7db03547 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -58,7 +58,7 @@ radix_trie = { version = "0.2", default-features = false, optional = true } ordered-float = { version = "3.4", default-features = false, optional = true } num_cpus = { version = "1", default-features = false, optional = true } ahash = { version = "0.8", default-features = false, optional = true } -hashbrown = { version = "=0.13.1", default-features = false, optional = true, features = ["ahash"] } +hashbrown = { version = "=0.14.3", default-features = false, optional = true, features = ["ahash"] } [dev-dependencies] approx = "0.5"