cityhash_sys/lib.rs
1#![doc=include_str!("../README.md")]
2#![no_std]
3#![feature(c_size_t)]
4#[cfg(all(target_arch = "x86_64", target_feature = "sse4.2"))]
5mod cityhash_crc;
6mod cityhash_portable;
7mod hasher;
8mod u128_low_high;
9
10#[cfg(all(target_arch = "x86_64", target_feature = "sse4.2"))]
11pub use crate::cityhash_crc::*;
12pub use crate::cityhash_portable::*;
13pub use hasher::*;