[package]
edition = "2024"
name = "opthash"
version = "0.2.0"
build = false
exclude = [
"/benches/",
"/opthash-internal/",
"/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.opthash-internal]
version = "0.2.0"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]