diff options
Diffstat (limited to 'vendor/ahash/src/hash_map.rs')
-rw-r--r-- | vendor/ahash/src/hash_map.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/ahash/src/hash_map.rs b/vendor/ahash/src/hash_map.rs index c1cb57d10..2b6fbdc89 100644 --- a/vendor/ahash/src/hash_map.rs +++ b/vendor/ahash/src/hash_map.rs @@ -1,6 +1,6 @@ use std::borrow::Borrow; -use std::collections::{hash_map, HashMap}; use std::collections::hash_map::{IntoKeys, IntoValues}; +use std::collections::{hash_map, HashMap}; use std::fmt::{self, Debug}; use std::hash::{BuildHasher, Hash}; use std::iter::FromIterator; @@ -14,7 +14,6 @@ use serde::{ }; use crate::RandomState; -use crate::random_state::RandomSource; /// A [`HashMap`](std::collections::HashMap) using [`RandomState`](crate::RandomState) to hash the items. /// (Requires the `std` feature to be enabled.) |