# 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 = "2021" name = "small-map" version = "0.1.3" authors = ["ChiHai "] description = "An inline SIMD accelerated hashmap designed for small amount of data." readme = "README.md" keywords = [ "smallmap", "hashmap", "map", "simd", "smallvec", ] categories = ["data-structures"] license = "MIT/Apache-2.0" repository = "https://github.com/ihciah/small-map" [profile.release] opt-level = 3 lto = true panic = "abort" overflow-checks = false [[bench]] name = "simple" path = "benches/simple.rs" harness = false [dependencies.ahash] version = "0.8" optional = true default-features = false [dependencies.hashbrown] version = "0.14" features = [ "inline-more", "allocator-api2", ] default-features = false [dependencies.rustc-hash] version = "1" optional = true default-features = false [dependencies.serde] version = "1" optional = true default-features = false [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.pprof] version = "0.13" features = ["flamegraph"] [dev-dependencies.rand] version = "0.8" [features] ahash = ["dep:ahash"] default = ["hashes"] fxhash = ["dep:rustc-hash"] hashes = [ "ahash", "fxhash", ] serde = [ "dep:serde", "hashbrown/serde", ]