[package]
edition = "2021"
name = "maglev-hash"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Maglev consistent hashing with top-K preference lists for replica-aware routing"
readme = "README.md"
keywords = [
"maglev",
"consistent-hashing",
"load-balancing",
"hashing",
"routing",
]
categories = [
"algorithms",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lovablelabs/maglev-hash"
[lib]
name = "maglev_hash"
path = "src/lib.rs"
[[bench]]
name = "maglev"
path = "benches/maglev.rs"
harness = false
[dependencies.fixedbitset]
version = "0.5"
[dependencies.primal]
version = "0.3"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]