]> git.proxmox.com Git - rustc.git/blob - vendor/siphasher/src/lib.rs
New upstream version 1.47.0~beta.2+dfsg1
[rustc.git] / vendor / siphasher / src / lib.rs
1 #![cfg_attr(not(test), no_std)]
2 #![allow(clippy::unreadable_literal)]
3 #![allow(clippy::cast_lossless)]
4
5 #[cfg(test)]
6 extern crate core;
7
8 pub mod sip;
9 pub mod sip128;
10
11 #[cfg(test)]
12 mod tests;
13
14 #[cfg(test)]
15 mod tests128;