incpa-byte 0.0.3

Byte-oriented parsing and input for `incpa` parsers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [ByteParser] and other support for parsing bytes
//!
//! <details>
//! <summary>TODO</summary>
//!
//! - Replace our concrete `BufferManager` with a trait and impl, because different applications have different performance needs and benefit from different strategies.
//! </details>
#![deny(missing_docs, unsafe_code)]

mod bufmgr;
mod parser;
pub mod testutils;

pub use self::bufmgr::BufferManager;
pub use self::parser::ByteParser;