small-map 0.1.3

An inline SIMD accelerated hashmap designed for small amount of data.
Documentation
[[bench]]
harness = false
name = "simple"
path = "benches/simple.rs"

[dependencies.ahash]
default-features = false
optional = true
version = "0.8"

[dependencies.hashbrown]
default-features = false
features = ["inline-more", "allocator-api2"]
version = "0.14"

[dependencies.rustc-hash]
default-features = false
optional = true
version = "1"

[dependencies.serde]
default-features = false
optional = true
version = "1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.pprof]
features = ["flamegraph"]
version = "0.13"

[dev-dependencies.rand]
version = "0.8"

[features]
ahash = ["dep:ahash"]
default = ["hashes"]
fxhash = ["dep:rustc-hash"]
hashes = ["ahash", "fxhash"]
serde = ["dep:serde", "hashbrown/serde"]

[package]
authors = ["ChiHai <ihciah@gmail.com>"]
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.3"

[profile.release]
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"