File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
compiler/rustc_data_structures Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3654,10 +3654,10 @@ version = "0.0.0"
3654
3654
dependencies = [
3655
3655
" arrayvec" ,
3656
3656
" bitflags 2.4.1" ,
3657
+ " either" ,
3657
3658
" elsa" ,
3658
3659
" ena" ,
3659
3660
" indexmap" ,
3660
- " itertools" ,
3661
3661
" jobserver" ,
3662
3662
" libc" ,
3663
3663
" measureme" ,
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ edition = "2021"
7
7
# tidy-alphabetical-start
8
8
arrayvec = { version = " 0.7" , default-features = false }
9
9
bitflags = " 2.4.1"
10
+ either = " 1.0"
10
11
elsa = " =1.7.1"
11
12
ena = " 0.14.2"
12
13
indexmap = { version = " 2.0.0" }
13
- itertools = " 0.11"
14
14
jobserver_crate = { version = " 0.1.27" , package = " jobserver" }
15
15
libc = " 0.2"
16
16
measureme = " 11"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use crate::fx::{FxHashMap, FxHasher};
3
3
use crate :: sync:: { is_dyn_thread_safe, CacheAligned } ;
4
4
use crate :: sync:: { Lock , LockGuard , Mode } ;
5
5
#[ cfg( parallel_compiler) ]
6
- use itertools :: Either ;
6
+ use either :: Either ;
7
7
use std:: borrow:: Borrow ;
8
8
use std:: collections:: hash_map:: RawEntryMut ;
9
9
use std:: hash:: { Hash , Hasher } ;
Original file line number Diff line number Diff line change 1
1
use crate :: fx:: FxHashMap ;
2
2
use arrayvec:: ArrayVec ;
3
- use itertools :: Either ;
3
+ use either :: Either ;
4
4
use std:: fmt;
5
5
use std:: hash:: Hash ;
6
6
use std:: ops:: Index ;
You can’t perform that action at this time.
0 commit comments