1
2
3
4
5
6
7
8
9
10
11
//! Email header encoding algorithms.

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

pub(super) const MAX_LINE_LEN: usize = 76;