[package]
edition = "2024"
name = "axhash"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast non-cryptographic hash function for Rust with no_std support and strong HashMap performance."
readme = "README.md"
keywords = [
"hash",
"hashing",
"performance",
"no_std",
"non-cryptographic",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT"
repository = "https://github.com/robby031/axhash"
[lib]
name = "axhash"
path = "src/lib.rs"
[[bin]]
name = "axhash"
path = "src/main.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "hashmap_usage"
path = "examples/hashmap_usage.rs"
[[bench]]
name = "head_to_head"
path = "benches/head_to_head.rs"
harness = false
[[bench]]
name = "my_criterion"
path = "benches/my_criterion.rs"
harness = false
[[bench]]
name = "stress_test"
path = "benches/stress_test.rs"
harness = false
[dependencies]
[dev-dependencies.ahash]
version = "0.8.12"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.foldhash]
version = "0.2.0"
[dev-dependencies.rapidhash]
version = "4.4.1"
[dev-dependencies.wyhash-final4]
version = "0.2.2"
[dev-dependencies.xxhash-rust]
version = "0.8.15"
features = ["xxh3"]
[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1