1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[cfg(doctest)]
#[macro_use]
extern crate doc_comment;

// C code //

#[allow(non_snake_case)]
mod C;
mod xxhash_bindings;

// Rust code //

#[cfg(feature = "random_entropy")]
mod buildhash;
mod entropy;
mod xxh3;
mod xxhash;

// Tests //

#[cfg(all(test))]
mod tests;

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

// Exports //

#[cfg(feature = "random_entropy")]
pub use buildhash::*;

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