fasthash-sys-fork 0.4.2

A suite of non-cryptographic hash functions for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(
    non_camel_case_types,
    non_snake_case,
    non_upper_case_globals,
    deref_nullptr
)]

use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "gen")] {
        include!(concat!(env!("OUT_DIR"), "/fasthash.rs"));
    } else {
        mod fasthash;

        pub use self::fasthash::*;
    }
}