Skip to main content

io_buffer/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![cfg_attr(docsrs, allow(unused_attributes))]
3#![doc = include_str!("../README.md")]
4
5mod buffer;
6mod utils;
7
8pub use buffer::{Buffer, MAX_BUFFER_SIZE};
9pub use utils::*;
10
11#[cfg(any(feature = "compress", doc))]
12/// Enabled with feature `compress`
13pub mod compress;
14
15#[cfg(test)]
16mod test;