From 768e41e925dfc936f4b3fed4d986630ec61837e5 Mon Sep 17 00:00:00 2001 From: Arthur Silva Date: Fri, 26 Jun 2026 18:37:07 +0200 Subject: [PATCH] Bump hashbrown to 0.17 (raises MSRV to 1.85) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c2a6f54..8d4030a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["lru", "concurrent", "cache", "s3-fifo", "clock"] categories = ["caching", "concurrency", "data-structures"] readme = "README.md" exclude = ["fuzz"] -rust-version = "1.71" +rust-version = "1.85" [features] default = ["custom-hasher", "parking_lot"] @@ -25,7 +25,7 @@ stats = [] crossbeam-utils = { optional = true, version = "0.8" } equivalent = "1.0" foldhash = { optional = true, version = "0.2" } -hashbrown = { version = "0.16", default-features = false, features = ["inline-more"] } +hashbrown = { version = "0.17", default-features = false, features = ["inline-more"] } parking_lot = { optional = true, version = "0.12" } shuttle = { version = "0.8", optional = true }