[package]
edition = "2024"
name = "axhash-map"
version = "0.1.2"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance HashMap and HashSet backed by hashbrown (SwissTable) and fueled by axhash."
readme = "README.md"
keywords = [
"hashmap",
"hashset",
"hash",
"performance",
"swisstable",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/robby031/axhash-map"
[lib]
name = "axhash_map"
path = "src/lib.rs"
[[example]]
name = "simple_bench"
path = "examples/simple_bench.rs"
[[bench]]
name = "map_comparison"
path = "benches/map_comparison.rs"
harness = false
[dependencies.axhash-core]
version = "0.8.2"
[dependencies.hashbrown]
version = "0.17.0"
default-features = false
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]