xxhash-c-sys 0.8.6

Bindings to xxhash
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let mut cc = cc::Build::new();

    cc.include("src/c/");
    #[cfg(feature = "no_std")]
    cc.define("XXH_NO_STDLIB", None);

    cc.file("src/c/xxhash.c");
    cc.warnings(false);

    cc.compile("xxhash");
}