incpa_byte/
lib.rs

1//! [ByteParser] and other support for parsing bytes
2//!
3//! <details>
4//! <summary>TODO</summary>
5//!
6//! - Replace our concrete `BufferManager` with a trait and impl, because different applications have different performance needs and benefit from different strategies.
7//! </details>
8#![deny(missing_docs, unsafe_code)]
9
10mod bufmgr;
11mod parser;
12pub mod testutils;
13
14pub use self::bufmgr::BufferManager;
15pub use self::parser::ByteParser;