summaryrefslogtreecommitdiffstats
path: root/src/map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.rs')
-rw-r--r--src/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.rs b/src/map.rs
index ae41155..baf4e3b 100644
--- a/src/map.rs
+++ b/src/map.rs
@@ -1,4 +1,4 @@
#[cfg(not(feature = "preserve_order"))]
pub type MapImpl<K, V> = std::collections::HashMap<K, V>;
#[cfg(feature = "preserve_order")]
-pub type MapImpl<K, V> = linked_hash_map::LinkedHashMap<K, V>;
+pub type MapImpl<K, V> = indexmap::IndexMap<K, V>;