Skip to main content

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;
7pub mod endian;
8#[cfg(feature = "util")]
9pub mod io;
10pub use endian::*;
11#[cfg(test)]
12pub mod test;