[[bench]]
harness = false
name = "simple"
path = "benches/simple.rs"
required-features = ["fxhash"]
[dependencies.ahash]
default-features = false
optional = true
version = "0.8"
[dependencies.hashbrown]
default-features = false
features = ["equivalent", "inline-more"]
version = "0.16"
[dependencies.rapidhash]
default-features = false
optional = true
version = "4"
[dependencies.rustc-hash]
default-features = false
optional = true
version = "2"
[dependencies.serde]
default-features = false
optional = true
version = "1"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"
[dev-dependencies.litemap]
version = "0.8.1"
[dev-dependencies.micromap]
version = "0.1"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rustc-hash]
features = ["std"]
version = "2"
[dev-dependencies.tinymap]
version = "0.4"
[features]
ahash = ["dep:ahash"]
default = ["rapidhash", "fxhash", "inline-more"]
fxhash = ["dep:rustc-hash"]
hashes = ["ahash", "fxhash", "rapidhash"]
inline-more = ["hashbrown/inline-more"]
nightly = []
rapidhash = ["dep:rapidhash"]
serde = ["dep:serde", "hashbrown/serde"]
[lib]
name = "small_map"
path = "src/lib.rs"
[package]
authors = ["ChiHai <ihciah@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures"]
description = "An inline SIMD accelerated hashmap designed for small amount of data."
edition = "2021"
keywords = ["smallmap", "hashmap", "map", "simd", "smallvec"]
license = "MIT/Apache-2.0"
name = "small-map"
readme = "README.md"
repository = "https://github.com/ihciah/small-map"
version = "0.1.5"
[profile.bench]
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
[profile.release]
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
[target."cfg(unix)".dev-dependencies.pprof]
features = ["flamegraph"]
version = "0.15"