about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sso/map.rs
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2024-01-24 15:36:57 -0800
committerJosh Stone <jistone@redhat.com>2024-01-24 15:36:57 -0800
commit8f3af4c6e21feb3cada901ea6f41f198b0f0e74a (patch)
treea73d65d8d6480bc52f1c2bb8d53e21d4f0d0d943 /compiler/rustc_data_structures/src/sso/map.rs
parent7ffc697ce10f19447c0ce338428ae4b9bc0c041c (diff)
downloadrust-8f3af4c6e21feb3cada901ea6f41f198b0f0e74a.tar.gz
rust-8f3af4c6e21feb3cada901ea6f41f198b0f0e74a.zip
rustc_data_structures: use either instead of itertools
Diffstat (limited to 'compiler/rustc_data_structures/src/sso/map.rs')
-rw-r--r--compiler/rustc_data_structures/src/sso/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/sso/map.rs b/compiler/rustc_data_structures/src/sso/map.rs
index 04e359a5470..2ef4a2ccd84 100644
--- a/compiler/rustc_data_structures/src/sso/map.rs
+++ b/compiler/rustc_data_structures/src/sso/map.rs
@@ -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;