# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" rust-version = "1.65" name = "hashlink" version = "0.11.0" build = false autolib = false autobins = false autoexamples = false autotests = false autobenches = false description = "HashMap-like containers that hold their key-value pairs in a user controllable order" documentation = "https://docs.rs/hashlink" readme = "README.md" keywords = [ "data-structures", "no_std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/kyren/hashlink" [badges.circle-ci] branch = "master" repository = "kyren/hashlink" [features] serde_impl = ["serde"] [lib] name = "hashlink" path = "src/lib.rs" [[test]] name = "linked_hash_map" path = "tests/linked_hash_map.rs" [[test]] name = "linked_hash_set" path = "tests/linked_hash_set.rs" [[test]] name = "lru_cache" path = "tests/lru_cache.rs" [[test]] name = "serde" path = "tests/serde.rs" [dependencies.hashbrown] version = "0.16" features = ["default-hasher"] default-features = false [dependencies.serde] version = "1.0" optional = true default-features = false [dev-dependencies.rustc-hash] version = "2" [dev-dependencies.serde_test] version = "1.0"