hrw-hash 2.0.3

A minimalistic implementation of the Highest Random Weight (HRW) aka Rendezvous hashing algorithm
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]