From 28ac29ad8a4b6562e3c38f4734b8d582261ec576 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 24 Aug 2025 11:31:36 -0700 Subject: [PATCH] Delete hashbrown feature unneeded since Rust 1.87 --- BUCK | 12 ++++++++---- fixups/hashbrown/fixups.toml | 3 --- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/BUCK b/BUCK index bf264c9..bb9c84e 100644 --- a/BUCK +++ b/BUCK @@ -3959,10 +3959,7 @@ rust_bootstrap_library( crate = "hashbrown", crate_root = "hashbrown-0.15.5.crate/src/lib.rs", edition = "2021", - features = [ - "nightly", - "raw-entry", - ], + features = ["nightly"], platform = { "linux-arm64-compiler": dict( features = [ @@ -3971,6 +3968,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -3997,6 +3995,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -4023,6 +4022,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -4049,6 +4049,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -4075,6 +4076,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -4101,6 +4103,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", @@ -4127,6 +4130,7 @@ rust_bootstrap_library( "default-hasher", "equivalent", "inline-more", + "raw-entry", ], deps = [ ":allocator-api2-0.2.21", diff --git a/fixups/hashbrown/fixups.toml b/fixups/hashbrown/fixups.toml index 8a7c7e3..0ab6cfb 100644 --- a/fixups/hashbrown/fixups.toml +++ b/fixups/hashbrown/fixups.toml @@ -3,9 +3,6 @@ omit_deps = ["allocator_api2"] extra_deps = ["//allocator:allocator-api2"] -# Undo https://github.com/rust-lang/rust/pull/138425 for hashbrown >=0.15.3 and rustc <1.87.0 -features = ["raw-entry"] - [[rustc_flags_select]] "//constraints:compiler" = [] "//constraints:library" = ["-Zforce-unstable-if-unmarked"]