xxhash_c_sys/lib.rs
1//!Proper bindings to [xxHash](https://github.com/Cyan4973/xxHash)
2//!
3//!Current version corresponds to [0.8.3](https://github.com/Cyan4973/xxHash/releases/tag/v0.8.3)
4//!
5//!## Features
6//!
7//!- `no_std` - Disables C Std library usage in xxhash. Specifically it makes `malloc` fail
8#![no_std]
9
10#[allow(warnings)]
11mod bindings;
12pub use bindings::*;