[package]
edition = "2024"
name = "hrw-hash"
version = "2.0.3"
authors = ["Victor Farazdagi <farazdagi@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalistic implementation of the Highest Random Weight (HRW) aka Rendezvous hashing algorithm"
homepage = "https://github.com/farazdagi/hrw-hash"
documentation = "https://docs.rs/hrw-hash"
readme = "README.md"
keywords = [
"consistent-hashing",
"rendezvous",
"hash",
"hrw",
"distributed",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/farazdagi/hrw-hash"
[lib]
name = "hrw_hash"
path = "src/lib.rs"
[[test]]
name = "hrw"
path = "tests/hrw.rs"
[dependencies.rapidhash]
version = "3.0"
[dev-dependencies.twox-hash]
version = "2.1"
features = [
"std",
"xxhash3_64",
]