1#![cfg_attr(not(test), no_std)] 2 3#![allow(clippy::unreadable_literal)] 4#![allow(clippy::cast_lossless)] 5 6#[cfg(test)] 7extern crate core; 8 9pub mod sip; 10pub mod sip128; 11 12#[cfg(test)] 13mod tests; 14 15#[cfg(test)] 16mod tests128;