1[package]
2
3name = "linked-hash-map"
4version = "0.5.6"
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 = [".github", "src/tests"]
18
19[features]
20nightly = []
21serde_impl = ["serde"]
22heapsize_impl = ["heapsize"]
23
24[dependencies]
25serde = { version = "1.0", optional = true }
26heapsize = { version = "0.4", optional = true }
27
28[dev-dependencies]
29serde_test = { version = "1.0" }
30