[package]
edition = "2024"
name = "axhash-indexmap"
version = "0.1.1"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Insertion-ordered IndexMap and IndexSet powered by indexmap (SwissTable) and the axhash engine."
readme = "README.md"
keywords = [
"indexmap",
"ordered",
"hashmap",
"hash",
"performance",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/robby031/axhash-indexmap"
[features]
default = ["std"]
std = ["indexmap/std"]
[lib]
name = "axhash_indexmap"
path = "src/lib.rs"
[[bench]]
name = "indexmap_comparison"
path = "benches/indexmap_comparison.rs"
harness = false
[dependencies.axhash-core]
version = "0.8.2"
[dependencies.indexmap]
version = "2"
default-features = false
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]