rustc_data_structures: use either instead of itertools
This commit is contained in:
parent
7ffc697ce1
commit
8f3af4c6e2
4 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ use crate::fx::{FxHashMap, FxHasher};
|
|||
use crate::sync::{is_dyn_thread_safe, CacheAligned};
|
||||
use crate::sync::{Lock, LockGuard, Mode};
|
||||
#[cfg(parallel_compiler)]
|
||||
use itertools::Either;
|
||||
use either::Either;
|
||||
use std::borrow::Borrow;
|
||||
use std::collections::hash_map::RawEntryMut;
|
||||
use std::hash::{Hash, Hasher};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::fx::FxHashMap;
|
||||
use arrayvec::ArrayVec;
|
||||
use itertools::Either;
|
||||
use either::Either;
|
||||
use std::fmt;
|
||||
use std::hash::Hash;
|
||||
use std::ops::Index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue