tab-hash 0.4.0

Simple, twisted, and mixed tabulation hashing for 32-bit and 64-bit unsigned integers.
Documentation
1
2
3
4
5
6
7
8
use cc;

fn main() {
    println!("cargo:rerun-if-changed=tests/reference_implementation.c");
    cc::Build::new()
        .file("tests/reference_implementation.c")
        .compile("tab-hash-reference");
}