aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-01-08 15:24:40 -0800
committerGitHub <noreply@github.com>2019-01-08 15:24:40 -0800
commit56f9afb4d2abdf38ed3caf9f819ac8bacc290940 (patch)
tree8b982602f331d2c1df97121b2f2b971dc39bc68d /src/lib.rs
parentd0977ab1dd9720c572b2d54a51196fcdf38f7544 (diff)
parent0372ba6925aa2c6db4d27022562064e25cdc5312 (diff)
downloadmilf-rs-56f9afb4d2abdf38ed3caf9f819ac8bacc290940.tar.gz
milf-rs-56f9afb4d2abdf38ed3caf9f819ac8bacc290940.zip
Merge pull request #278 from Kerollmops/master
Add the preserve_order feature (rebased version)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e36ff52..4a32b13 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -153,7 +153,10 @@
#[macro_use]
extern crate serde;
+#[cfg(feature = "preserve_order")]
+extern crate linked_hash_map;
+pub mod map;
pub mod value;
#[doc(no_inline)]
pub use value::Value;