From f0b027d057f7db33d7b057067caaa9d7d566c480 Mon Sep 17 00:00:00 2001 From: Joshua Liebow-Feeser Date: Mon, 23 Oct 2023 15:56:20 -0700 Subject: [PATCH] Bump ahash dependency version The previous version had a bug, and was yanked. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3594791..f5a3441 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["containers", "Rc", "Arc", "weak", "no_std"] edition = "2018" [dependencies] -ahash = { version = "0.7.6", optional = true, features = [] } +ahash = { version = "0.8.5", optional = true, features = [] } [dev-dependencies] quickcheck = "1"