From 0bc2c0c680208b339f82dc0fb7057578aa721ae0 Mon Sep 17 00:00:00 2001 From: konsti Date: Wed, 22 Jan 2025 23:57:58 +0100 Subject: [PATCH] Update rustc-hash bound to 2.0.0 (#311) We don't actually support v1 anymore, we need the `FxBuildHasher` introduced in v2. We still can't build with minimal versions due to https://github.com/ron-rs/ron/issues/556 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0dd47352..24e7821d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ indexmap = "2.7.0" # for debug logs in tests log = "0.4.22" priority-queue = "2.1.1" -rustc-hash = ">=1.0.0, <3.0.0" +rustc-hash = "^2.0.0" serde = { version = "1.0", features = ["derive"], optional = true } thiserror = "2.0" version-ranges = { version = "0.1.0", path = "version-ranges" }