[package]
edition = "2024"
name = "opthash"
version = "0.3.0"
build = false
exclude = [
"/benches/",
"/paper/",
"/scripts/",
"/.gitattributes",
"/.gitignore",
"/AGENTS.md",
"/CLAUDE.md",
"/requirements.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementations of Elastic Hashing and Funnel Hashing"
readme = "README.md"
keywords = [
"hashmap",
"open_addressing",
"elastic_hashing",
"funnel_hashing",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aaron-ang/opthash"
[lib]
name = "opthash"
path = "src/lib.rs"
[dependencies.foldhash]
version = "0.2"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.hashbrown]
version = "0.17"
[dev-dependencies.hdrhistogram]
version = "7.5"
[dev-dependencies.pprof]
version = "0.15"
features = ["flamegraph"]