blob: b2d5572a3105ff17d0674b2e8f3e28f72fda0537 [file] [log] [blame]
Joel Galensonf4819d82020-07-28 13:50:12 -07001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14name = "linked-hash-map"
Haibo Huange6637b12021-02-09 17:32:59 -080015version = "0.5.4"
Joel Galensonf4819d82020-07-28 13:50:12 -070016authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>", "Andrew Paseltiner <apaseltiner@gmail.com>"]
17exclude = ["/.travis.yml", "/deploy-docs.sh"]
18description = "A HashMap wrapper that holds key-value pairs in insertion order"
19homepage = "https://github.com/contain-rs/linked-hash-map"
Haibo Huange6637b12021-02-09 17:32:59 -080020documentation = "https://docs.rs/linked-hash-map"
Joel Galensonf4819d82020-07-28 13:50:12 -070021readme = "README.md"
22keywords = ["data-structures"]
23license = "MIT/Apache-2.0"
24repository = "https://github.com/contain-rs/linked-hash-map"
25[dependencies.clippy]
26version = "0.*"
27optional = true
28
29[dependencies.heapsize]
30version = "0.4"
31optional = true
32
33[dependencies.serde]
34version = "1.0"
35optional = true
36
37[dependencies.serde_test]
38version = "1.0"
39optional = true
40
41[features]
42heapsize_impl = ["heapsize"]
43nightly = []
44serde_impl = ["serde", "serde_test"]