1 2 3 4 5 6 7 8 9
#![no_std] #![doc = include_str!("../README.md")] #![allow(unused_imports)] mod key; pub use key::*; mod squares; pub use squares::*; #[cfg(feature = "rand")] mod rand; #[cfg(feature = "rand")] pub use rand::*;