1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*! `wyz` – myrrlyn’s wyzyrdly library This crate consolidates all the small tools and conveniences I’ve built up in my experience building Rust crates. Each module has more documentation about what it contains. The modules are largely independent, and can be used individually. !*/ #![deny(missing_docs)] #![no_std] #[cfg(feature = "alloc")] extern crate alloc; #[cfg(feature = "std")] extern crate std; pub mod conv; pub mod pipe; pub mod pretty; pub mod tap; #[cfg(feature = "std")] #[macro_use] pub mod exit; pub use conv::*; pub use pipe::*; pub use pretty::*; pub use tap::*; #[cfg(feature = "std")] pub use exit::*;