Skip to content

Commit 38ef618

Browse files
authored
Merge pull request #364 from hkBst/patch-1
remove fxhash example and dep
2 parents 31c9862 + f63bb6e commit 38ef618

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ rand = {version = "0.8", features = ["small_rng"] }
3636
quickcheck = { version = "1.0", default-features = false }
3737
fnv = "1.0"
3838
lazy_static = "1.3"
39-
fxhash = "0.2.1"
4039
serde_derive = "1.0"
4140

4241
[features]

src/lib.rs

-6
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,14 @@
6868
//!
6969
//! ```
7070
//! use fnv::FnvBuildHasher;
71-
//! use fxhash::FxBuildHasher;
7271
//! use indexmap::{IndexMap, IndexSet};
7372
//!
7473
//! type FnvIndexMap<K, V> = IndexMap<K, V, FnvBuildHasher>;
7574
//! type FnvIndexSet<T> = IndexSet<T, FnvBuildHasher>;
7675
//!
77-
//! type FxIndexMap<K, V> = IndexMap<K, V, FxBuildHasher>;
78-
//! type FxIndexSet<T> = IndexSet<T, FxBuildHasher>;
79-
//!
8076
//! let std: IndexSet<i32> = (0..100).collect();
8177
//! let fnv: FnvIndexSet<i32> = (0..100).collect();
82-
//! let fx: FxIndexSet<i32> = (0..100).collect();
8378
//! assert_eq!(std, fnv);
84-
//! assert_eq!(std, fx);
8579
//! ```
8680
//!
8781
//! ### Rust Version

0 commit comments

Comments
 (0)