1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#[cfg(doctest)]
#[macro_use]
extern crate doc_comment;

mod xxhash_bindings;
mod xxhash;
mod xxh3;
mod entropy;
mod buildhash;

#[cfg(test)]
mod tests;

#[cfg(doctest)]
doctest!("../readme.md");

pub use xxhash::*;
pub use xxh3::*;
pub use entropy::*;
pub use buildhash::*;