Predictable hash indexing with a possible maximum value. Rust adaptation of watson/hash-index using Blake3
```rust use hash_index;
let hash = hashindex::hash(b"foobar"); // 2857448067 let hashwithmax = hashindex::hashwithmax(b"foobar", 100); // 67 ```