1 #![cfg_attr(not(test), no_std)] 2 #![feature(const_for)] 3 #![feature(const_trait_impl)] 4 #![allow(clippy::needless_return)] 5 6 #[cfg(test)] 7 extern crate std; 8 9 pub mod crc64; 10 pub mod tables; 11