1# 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 are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13name = "linked-hash-map" 14version = "0.5.6" 15authors = [ 16 "Stepan Koltsov <[email protected]>", 17 "Andrew Paseltiner <[email protected]>", 18] 19exclude = [ 20 ".github", 21 "src/tests", 22] 23description = "A HashMap wrapper that holds key-value pairs in insertion order" 24homepage = "https://github.com/contain-rs/linked-hash-map" 25documentation = "https://docs.rs/linked-hash-map" 26readme = "README.md" 27keywords = ["data-structures"] 28license = "MIT/Apache-2.0" 29repository = "https://github.com/contain-rs/linked-hash-map" 30 31[dependencies.heapsize] 32version = "0.4" 33optional = true 34 35[dependencies.serde] 36version = "1.0" 37optional = true 38 39[dev-dependencies.serde_test] 40version = "1.0" 41 42[features] 43heapsize_impl = ["heapsize"] 44nightly = [] 45serde_impl = ["serde"] 46