From 738cf07fda693b48f2280f5f473d7d24211f296f Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Mon, 15 Jan 2024 01:17:03 +0100 Subject: [PATCH] Update `hashbrown` to `0.14` As the MSRV of `metrics-util` now is `1.65` we can now update to `hashbrown` version `0.14` (which has MSRV `1.63`). --- 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"