[package]
edition = "2024"
rust-version = "1.88"
name = "hashify"
version = "0.3.0"
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"
[lib]
name = "hashify"
path = "src/lib.rs"
doctest = false
proc-macro = true
[[test]]
name = "allocations"
path = "tests/allocations.rs"
[[test]]
name = "lookups"
path = "tests/lookups.rs"
[[test]]
name = "no_prelude"
path = "tests/no_prelude.rs"
[[test]]
name = "strict"
path = "tests/strict.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "phf_bench"
path = "benches/phf_bench.rs"
harness = false
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "3.0"
features = ["full"]
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.phf]
version = "0.14.0"
features = ["macros"]