From 0555ce2cf106eb2c8f55e7c726c67bb59c093c58 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 19 Mar 2016 22:59:03 -0700 Subject: [PATCH] Feature to preserve order of map keys --- yaml/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yaml/Cargo.toml b/yaml/Cargo.toml index e5363212..dc0e7dca 100644 --- a/yaml/Cargo.toml +++ b/yaml/Cargo.toml @@ -9,7 +9,10 @@ documentation = "https://dtolnay.github.io/serde-yaml/" readme = "../README.md" keywords = ["yaml", "serde"] +[features] +preserve_order = ["yaml-rust/preserve_order"] + [dependencies] clippy = { version = "^0.*", optional = true } serde = "^0.7" -yaml-rust = "^0.3" +yaml-rust = "^0.3.2"