[package]
name = "consistent_hasher"
version = "0.1.2"
edition = "2021"
authors = ["Hassan <hassanmohseen22@gmail.com>"]
license = "MIT OR Apache-2.0"
keywords = ["consistent-hashing", "load-balancer"]
description = "An implementation of consistent hashing, a technique commonly used in distributed systems to map keys (such as data items or requests) to nodes (e.g., servers or storage units) in a way that minimizes disruptions when nodes are added or removed."
repository = "https://github.com/whitestork-dev/consistent-hashing"
readme = "README.md"
[dependencies]
hash = "0.3.0"
instant = "0.1.13"
murmur2 = "0.1.0"
rustc-hash = "2.0.0"
time = "0.3.36"
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
[registry]
token = "CARGO_REGISTRIES_CONSISTENTHASHER_cioGLpFa4wmizaaDg0XZOb1Fab0XZxX447I"