Skip to content

Commit 1b2c082

Browse files
committed
Auto merge of rust-lang#138769 - Zoxc:hashbrown-table-tests, r=<try>
Try using std's hashbrown copy Just testing if this affects performance. It may relate to rust-lang#138708, rust-lang#137701 and rust-lang#115747.
2 parents 01dc45c + 4b74735 commit 1b2c082

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

Cargo.lock

-2
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,6 @@ version = "0.15.2"
14911491
source = "registry+https://github.com/rust-lang/crates.io-index"
14921492
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
14931493
dependencies = [
1494-
"allocator-api2",
14951494
"foldhash",
14961495
"serde",
14971496
]
@@ -3480,7 +3479,6 @@ dependencies = [
34803479
"either",
34813480
"elsa",
34823481
"ena",
3483-
"hashbrown 0.15.2",
34843482
"indexmap",
34853483
"jobserver",
34863484
"libc",

compiler/rustc_data_structures/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ thin-vec = "0.2.12"
2929
tracing = "0.1"
3030
# tidy-alphabetical-end
3131

32-
[dependencies.hashbrown]
33-
version = "0.15.2"
34-
default-features = false
35-
features = ["nightly"] # for may_dangle
36-
3732
[dependencies.parking_lot]
3833
version = "0.12"
3934

compiler/rustc_data_structures/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
#![feature(unwrap_infallible)]
3939
// tidy-alphabetical-end
4040

41+
extern crate hashbrown;
42+
4143
use std::fmt;
4244

4345
pub use atomic_ref::AtomicRef;

0 commit comments

Comments
 (0)