consistent_hasher 0.1.3

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.
Documentation
[[bin]]
name = "consistent_hasher"
path = "src/main.rs"

[dependencies.hash]
version = "0.3.0"

[dependencies.instant]
version = "0.1.13"

[dependencies.murmur2]
version = "0.1.0"

[dependencies.rustc-hash]
version = "2.0.0"

[dependencies.time]
version = "0.3.36"

[lib]
name = "consistent_hasher"
path = "src/lib.rs"

[package]
authors = ["Hassan <hassanmohseen22@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
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."
edition = "2021"
keywords = ["consistent-hashing", "load-balancer"]
license = "MIT OR Apache-2.0"
name = "consistent_hasher"
readme = "README.md"
repository = "https://github.com/whitestork-dev/consistent-hashing"
version = "0.1.3"

[profile.dev]
opt-level = 1

[profile.release]
opt-level = 3