From 5d10d4d1f0e8673244636f6fcaa7b001a207261d Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Sun, 3 Mar 2024 01:53:21 +0000 Subject: [PATCH] bump ahash to 0.8.8 to drop range constraint needed to avoid MSRV bump part two --- metrics-util/CHANGELOG.md | 5 +++++ metrics-util/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/metrics-util/CHANGELOG.md b/metrics-util/CHANGELOG.md index 2c32755d..d5fb70e2 100644 --- a/metrics-util/CHANGELOG.md +++ b/metrics-util/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Fixed + +- Bump `ahash` back to `0.8.8` to remove range constraint after an upstream fix was provided to + remove the unnecessary MSRV bump. + ## [0.16.2] - 2024-02-11 ### Fixed diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index eecb66aa..6c29e57c 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -57,7 +57,7 @@ sketches-ddsketch = { version = "0.2", default-features = false, optional = true 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, <= 0.8.7", default-features = false, optional = true } +ahash = { version = "0.8.8", default-features = false, optional = true } hashbrown = { version = "0.14", default-features = false, optional = true, features = ["ahash"] } [dev-dependencies]