From e9f5290926dd7a5660f4f86bfc44591710079fe0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 25 Oct 2019 12:08:12 -0700 Subject: Switch from linked-hash-map to indexmap Follow the footsteps of serde_json! Closes #348 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index d685881..f6032fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ members = ['test-suite'] [dependencies] serde = "1.0.97" -linked-hash-map = { version = "0.5", optional = true } +indexmap = { version = "1.0", optional = true } [dev-dependencies] serde_derive = "1.0" @@ -33,4 +33,4 @@ default = [] # Use LinkedHashMap rather than BTreeMap as the map type of toml::Value. # This allows data to be read into a Value and written back to a TOML string # while preserving the order of map keys in the input. -preserve_order = ["linked-hash-map"] +preserve_order = ["indexmap"] -- cgit v1.2.3