diff --git a/Cargo.toml b/Cargo.toml index d8536635..1ac50605 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,6 @@ rand = {version = "0.8", features = ["small_rng"] } quickcheck = { version = "1.0", default-features = false } fnv = "1.0" lazy_static = "1.3" -fxhash = "0.2.1" serde_derive = "1.0" [features] diff --git a/src/lib.rs b/src/lib.rs index 518b236f..4fd9aac1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -68,20 +68,14 @@ //! //! ``` //! use fnv::FnvBuildHasher; -//! use fxhash::FxBuildHasher; //! use indexmap::{IndexMap, IndexSet}; //! //! type FnvIndexMap = IndexMap; //! type FnvIndexSet = IndexSet; //! -//! type FxIndexMap = IndexMap; -//! type FxIndexSet = IndexSet; -//! //! let std: IndexSet = (0..100).collect(); //! let fnv: FnvIndexSet = (0..100).collect(); -//! let fx: FxIndexSet = (0..100).collect(); //! assert_eq!(std, fnv); -//! assert_eq!(std, fx); //! ``` //! //! ### Rust Version