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