blob: cb43704495882ab08e850c2a676a724ae1c580d0 [file] [log] [blame]
Joel Galensonf4819d82020-07-28 13:50:12 -07001[package]
2
3name = "linked-hash-map"
Haibo Huange6637b12021-02-09 17:32:59 -08004version = "0.5.4"
Joel Galensonf4819d82020-07-28 13:50:12 -07005license = "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"
Haibo Huange6637b12021-02-09 17:32:59 -080014documentation = "https://docs.rs/linked-hash-map"
Joel Galensonf4819d82020-07-28 13:50:12 -070015keywords = ["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 }