1[package] 2 3name = "linked-hash-map" 4version = "0.5.4" 5license = "MIT/Apache-2.0" 6description = "A HashMap wrapper that holds key-value pairs in insertion order" 7authors = [ 8 "Stepan Koltsov <stepan.koltsov@gmail.com>", 9 "Andrew Paseltiner <apaseltiner@gmail.com>", 10] 11 12repository = "https://github.com/contain-rs/linked-hash-map" 13homepage = "https://github.com/contain-rs/linked-hash-map" 14documentation = "https://docs.rs/linked-hash-map" 15keywords = ["data-structures"] 16readme = "README.md" 17exclude = ["/.travis.yml", "/deploy-docs.sh"] 18 19[features] 20nightly = [] 21serde_impl = ["serde", "serde_test"] 22heapsize_impl = ["heapsize"] 23 24[dependencies] 25clippy = { version = "0.*", optional = true } 26serde = { version = "1.0", optional = true } 27serde_test = { version = "1.0", optional = true } 28heapsize = { version = "0.4", optional = true } 29