This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -1491,6 +1491,7 @@ version = "0.15.2"
14911491source = " registry+https://github.com/rust-lang/crates.io-index"
14921492checksum = " bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
14931493dependencies = [
1494+ " allocator-api2" ,
14941495 " foldhash" ,
14951496 " serde" ,
14961497]
@@ -3479,6 +3480,7 @@ dependencies = [
34793480 " either" ,
34803481 " elsa" ,
34813482 " ena" ,
3483+ " hashbrown 0.15.2" ,
34823484 " indexmap" ,
34833485 " jobserver" ,
34843486 " libc" ,
@@ -4257,6 +4259,7 @@ dependencies = [
42574259name = " rustc_query_system"
42584260version = " 0.0.0"
42594261dependencies = [
4262+ " hashbrown 0.15.2" ,
42604263 " parking_lot" ,
42614264 " rustc-rayon-core" ,
42624265 " rustc_abi" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ thin-vec = "0.2.12"
2929tracing = " 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+
3237[dependencies .parking_lot ]
3338version = " 0.12"
3439
Original file line number Diff line number Diff line change 3838#![ feature( unwrap_infallible) ]
3939// tidy-alphabetical-end
4040
41- extern crate hashbrown;
42-
4341use std:: fmt;
4442
4543pub use atomic_ref:: AtomicRef ;
Original file line number Diff line number Diff line change @@ -24,3 +24,8 @@ rustc_span = { path = "../rustc_span" }
2424smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
2525tracing = " 0.1"
2626# tidy-alphabetical-end
27+
28+ [dependencies .hashbrown ]
29+ version = " 0.15.2"
30+ default-features = false
31+ features = [" nightly" ] # for may_dangle
Original file line number Diff line number Diff line change 77#![ feature( min_specialization) ]
88// tidy-alphabetical-end
99
10- extern crate hashbrown;
11-
1210pub mod cache;
1311pub mod dep_graph;
1412mod error;
You can’t perform that action at this time.
0 commit comments