# 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" name = "stash" version = "0.1.6" authors = ["Steven Allen "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An amortized `O(1)` table for cases where you don't need to choose the keys and want something faster than a HashTable." homepage = "https://github.com/Stebalien/stash-rs" documentation = "https://docs.rs/stash/" readme = "README.md" keywords = ["data-structures"] license = "MIT/Apache-2.0" repository = "https://github.com/Stebalien/stash-rs" [lib] name = "stash" path = "src/lib.rs" [[example]] name = "custom_index" path = "examples/custom_index.rs" [[example]] name = "stash" path = "examples/stash.rs" [[test]] name = "stash" path = "tests/stash.rs" [[test]] name = "unique_stash" path = "tests/unique_stash.rs" [[bench]] name = "btree_map" path = "benches/btree_map.rs" [[bench]] name = "hash_map" path = "benches/hash_map.rs" [[bench]] name = "stash" path = "benches/stash.rs" [[bench]] name = "unique_stash" path = "benches/unique_stash.rs" [dependencies.serde] version = "1" optional = true default-features = false [dependencies.serde_derive] version = "1" optional = true [dependencies.unreachable] version = "1" [dev-dependencies.bincode] version = "1" [features] default = ["std"] serialization = [ "serde", "serde_derive", ] std = ["serde/std"]