File tree 5 files changed +13
-4
lines changed
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"
1491
1491
source = " registry+https://github.com/rust-lang/crates.io-index"
1492
1492
checksum = " bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1493
1493
dependencies = [
1494
+ " allocator-api2" ,
1494
1495
" foldhash" ,
1495
1496
" serde" ,
1496
1497
]
@@ -3479,6 +3480,7 @@ dependencies = [
3479
3480
" either" ,
3480
3481
" elsa" ,
3481
3482
" ena" ,
3483
+ " hashbrown 0.15.2" ,
3482
3484
" indexmap" ,
3483
3485
" jobserver" ,
3484
3486
" libc" ,
@@ -4257,6 +4259,7 @@ dependencies = [
4257
4259
name = " rustc_query_system"
4258
4260
version = " 0.0.0"
4259
4261
dependencies = [
4262
+ " hashbrown 0.15.2" ,
4260
4263
" parking_lot" ,
4261
4264
" rustc-rayon-core" ,
4262
4265
" rustc_abi" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ thin-vec = "0.2.12"
29
29
tracing = " 0.1"
30
30
# tidy-alphabetical-end
31
31
32
+ [dependencies .hashbrown ]
33
+ version = " 0.15.2"
34
+ default-features = false
35
+ features = [" nightly" ] # for may_dangle
36
+
32
37
[dependencies .parking_lot ]
33
38
version = " 0.12"
34
39
Original file line number Diff line number Diff line change 38
38
#![ feature( unwrap_infallible) ]
39
39
// tidy-alphabetical-end
40
40
41
- extern crate hashbrown;
42
-
43
41
use std:: fmt;
44
42
45
43
pub use atomic_ref:: AtomicRef ;
Original file line number Diff line number Diff line change @@ -24,3 +24,8 @@ rustc_span = { path = "../rustc_span" }
24
24
smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
25
25
tracing = " 0.1"
26
26
# 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 7
7
#![ feature( min_specialization) ]
8
8
// tidy-alphabetical-end
9
9
10
- extern crate hashbrown;
11
-
12
10
pub mod cache;
13
11
pub mod dep_graph;
14
12
mod error;
You can’t perform that action at this time.
0 commit comments