yhy-email-encoding 0.0.2

Low level email encoding RFCs implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Email header encoding algorithms.

mod hex;
mod hex_encoding;
pub mod quoted_string;
pub mod rfc2047;
pub mod rfc2231;
pub mod rfc2822;
mod utils;
pub mod writer;

pub(super) const MAX_LINE_LEN: usize = 76;