A fast, minimal memory, consistent hash algorithm.
Cargo dependencies:
toml
[dependencies]
jumphash = "~0"
Rust code:
```rust extern crate jumphash;
let jh = jumphash::JumpHasher::new(); let slotcount = 100; let slotforkey = jh.slot(&"key", slotcount); ```