summaryrefslogtreecommitdiffstats
path: root/third_party/rust/siphasher/src/lib.rs
blob: 6908f40d6ea17169b729384565d8835f9a4c1083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(test), no_std)]

#![allow(clippy::unreadable_literal)]
#![allow(clippy::cast_lossless)]

#[cfg(test)]
extern crate core;

pub mod sip;
pub mod sip128;

#[cfg(test)]
mod tests;

#[cfg(test)]
mod tests128;