[package]
edition = "2024"
name = "axhash-dashmap"
version = "0.1.1"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Concurrent DashMap and DashSet powered by dashmap (multi-shard RwLock) and fueled by axhash (AES-NI accelerated hashing)."
readme = "README.md"
keywords = [
"dashmap",
"concurrent",
"hashmap",
"hash",
"performance",
]
categories = [
"data-structures",
"algorithms",
"concurrency",
]
license = "MIT"
repository = "https://github.com/robby031/axhash"
[features]
default = []
rayon = ["dashmap/rayon"]
serde = ["dashmap/serde"]
[lib]
name = "axhash_dashmap"
path = "src/lib.rs"
[[bench]]
name = "dashmap_comparison"
path = "benches/dashmap_comparison.rs"
harness = false
[dependencies.axhash-core]
version = "0.8.2"
[dependencies.dashmap]
version = "6.1.0"
default-features = false
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]