File tree 2 files changed +0
-7
lines changed
2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ rand = {version = "0.8", features = ["small_rng"] }
36
36
quickcheck = { version = " 1.0" , default-features = false }
37
37
fnv = " 1.0"
38
38
lazy_static = " 1.3"
39
- fxhash = " 0.2.1"
40
39
serde_derive = " 1.0"
41
40
42
41
[features ]
Original file line number Diff line number Diff line change 68
68
//!
69
69
//! ```
70
70
//! use fnv::FnvBuildHasher;
71
- //! use fxhash::FxBuildHasher;
72
71
//! use indexmap::{IndexMap, IndexSet};
73
72
//!
74
73
//! type FnvIndexMap<K, V> = IndexMap<K, V, FnvBuildHasher>;
75
74
//! type FnvIndexSet<T> = IndexSet<T, FnvBuildHasher>;
76
75
//!
77
- //! type FxIndexMap<K, V> = IndexMap<K, V, FxBuildHasher>;
78
- //! type FxIndexSet<T> = IndexSet<T, FxBuildHasher>;
79
- //!
80
76
//! let std: IndexSet<i32> = (0..100).collect();
81
77
//! let fnv: FnvIndexSet<i32> = (0..100).collect();
82
- //! let fx: FxIndexSet<i32> = (0..100).collect();
83
78
//! assert_eq!(std, fnv);
84
- //! assert_eq!(std, fx);
85
79
//! ```
86
80
//!
87
81
//! ### Rust Version
You can’t perform that action at this time.
0 commit comments