[package]
edition = "2024"
name = "opthash"
version = "0.4.0"
build = false
exclude = [
"/benches/",
"/opthash/",
"/paper/",
"/scripts/",
"/tests/",
"/.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 = "Apache-2.0"
repository = "https://github.com/aaron-ang/opthash"
[features]
python = ["dep:pyo3"]
[lib]
name = "opthash"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.foldhash]
version = "0.2"
[dependencies.pyo3]
version = "0.28"
features = [
"extension-module",
"abi3-py310",
]
optional = true
[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"]