[package]
edition = "2024"
name = "hashify"
version = "0.2.8"
authors = ["Stalwart Labs <hello@stalw.art>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast perfect hashing without dependencies"
homepage = "https://github.com/stalwartlabs/hashify"
readme = "README.md"
keywords = [
"hash",
"perfect",
"minimal",
]
categories = [
"data-structures",
"no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stalwartlabs/hashify"
resolver = "2"
[features]
force-32bit = []
[lib]
name = "hashify"
path = "src/lib.rs"
doctest = false
proc-macro = true
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "phf_bench"
path = "benches/phf_bench.rs"
harness = false
[dependencies.indexmap]
version = "2.13.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.phf]
version = "0.11.3"
features = ["macros"]