imap-rs-core 0.2.0

Zero-copy IMAP4rev2 protocol types and parser (no I/O). Core of the imap-rs library.
Documentation
1
2
3
4
5
6
7
8
9
#![forbid(unsafe_code)]

pub mod ast;
pub mod error;
pub mod parser;

pub use ast::*;
pub use error::ParseError;
pub use parser::parse_response;