From bc29c4f984605ccadb0daede451b28523c1aff86 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sat, 20 Jan 2024 21:28:54 +0100 Subject: [PATCH] Update `hashbrown` to `0.14` (#438) --- 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 962f61b9..d1f528b2 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 = "4.2", 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", default-features = false, optional = true, features = ["ahash"] } [dev-dependencies] approx = "0.5"