Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/line-index/src/lib.rs')
| -rw-r--r-- | lib/line-index/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/line-index/src/lib.rs b/lib/line-index/src/lib.rs index af01eafc28..64a094c63e 100644 --- a/lib/line-index/src/lib.rs +++ b/lib/line-index/src/lib.rs @@ -7,7 +7,7 @@ mod tests; use std::{iter, mem}; -use non_hash::NoHashHashMap; +use nohash_hasher::IntMap as NoHashHashMap; use text_size::{TextRange, TextSize}; /// Maps flat [`TextSize`] offsets into `(line, column)` representation. |