From 0b306c0dd15165621fde647315bd3c791ddc8b03 Mon Sep 17 00:00:00 2001 From: Orson Peters Date: Wed, 2 Oct 2024 20:06:15 +0200 Subject: [PATCH] refactor(rust): Pin hashbrown to 0.14 until migrated --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e2a83ef18929..d266ead65b9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ fallible-streaming-iterator = "0.1.9" fast-float = { version = "0.2" } flate2 = { version = "1", default-features = false } futures = "0.3.25" -hashbrown = { version = "0.14", features = ["rayon", "ahash", "serde"] } +hashbrown = { version = "=0.14.5", features = ["rayon", "ahash", "serde"] } hex = "0.4.3" indexmap = { version = "2", features = ["std", "serde"] } itoa = "1.0.6"