1 2 3 4 5 6 7 8 9 10 11 12
//! Crate bin_rs is a binary manipulate crate. //! pub mod reader; #[cfg(feature = "async")] pub mod async_reader; pub mod endian; #[cfg(feature = "util")] pub mod io; pub use endian::*; #[cfg(test)] pub mod test;