email-parser 0.5.0

The fastest and lightest email parsing Rust library. Supports MIME.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

pub(crate) mod address;
pub(crate) mod character_sets;
pub(crate) mod combinators;
pub(crate) mod common;
pub(crate) mod fields;
pub(crate) mod message;
#[cfg(feature = "mime")]
pub(crate) mod mime;
pub(crate) mod quoted_string;
pub(crate) mod time;
pub(crate) mod whitespaces;