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

#[deprecated(note = "Import it through the writer module", since = "0.1.1")]
pub use self::writer::EmailWriter;

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;