1 2 3 4 5 6 7 8 9 10 11
use rustc_serialize::base64::{CharacterSet, Config, Newline}; pub mod auth11; pub mod auth13; pub static BASE64_AUTH: Config = Config { char_set: CharacterSet::Standard, newline: Newline::LF, pad: true, line_length: Some(60), };