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"
36543654dependencies = [
36553655 " arrayvec" ,
36563656 " bitflags 2.4.1" ,
3657+ " either" ,
36573658 " elsa" ,
36583659 " ena" ,
36593660 " indexmap" ,
3660- " itertools" ,
36613661 " jobserver" ,
36623662 " libc" ,
36633663 " measureme" ,
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ edition = "2021"
77# tidy-alphabetical-start
88arrayvec = { version = " 0.7" , default-features = false }
99bitflags = " 2.4.1"
10+ either = " 1.0"
1011elsa = " =1.7.1"
1112ena = " 0.14.2"
1213indexmap = { version = " 2.0.0" }
13- itertools = " 0.11"
1414jobserver_crate = { version = " 0.1.27" , package = " jobserver" }
1515libc = " 0.2"
1616measureme = " 11"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use crate::fx::{FxHashMap, FxHasher};
33use crate :: sync:: { is_dyn_thread_safe, CacheAligned } ;
44use crate :: sync:: { Lock , LockGuard , Mode } ;
55#[ cfg( parallel_compiler) ]
6- use itertools :: Either ;
6+ use either :: Either ;
77use std:: borrow:: Borrow ;
88use std:: collections:: hash_map:: RawEntryMut ;
99use std:: hash:: { Hash , Hasher } ;
Original file line number Diff line number Diff line change 11use crate :: fx:: FxHashMap ;
22use arrayvec:: ArrayVec ;
3- use itertools :: Either ;
3+ use either :: Either ;
44use std:: fmt;
55use std:: hash:: Hash ;
66use std:: ops:: Index ;
You can’t perform that action at this time.
0 commit comments