bin_rs/
lib.rs

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