dtolnay / serde-yaml

Strongly typed YAML library for Rust
Apache License 2.0
965 stars 165 forks source link

Replace LinkedHashMap with IndexMap #208

Closed dtolnay closed 3 years ago

dtolnay commented 3 years ago

IndexMap has equivalent guarantees as far as would be relevant to the serde_yaml API, and is actively maintained unlike LinkedHashMap.

The same switch in serde_json: https://github.com/serde-rs/json/pull/451.