eml_parser/
lib.rs

1// https://www.ietf.org/rfc/rfc0822.txt
2
3pub mod eml;
4pub mod errors;
5pub mod parser;
6
7pub use parser::EmlParser;