CKey
CKey is an experimental consistent hash key library, implemented in Rust.
See the theory about consistent hashing.
This library provides 256-bit keys, with some helpers. Internally, keys are stored on 4 unsigned integers of 64-bit each.

Status
For now this is a toy project, clearly NOT suitable for production use.
Usage
use CKey;
let k1 = rand;
let k2 = k1.next;
let k3 = k2 + 10u8;
assert!;
let k4 = from;
assert_eq!;
Links
License
Ckey is licensed under the MIT license.