1//! Implementations of `io::Read` to transparently decode base64.
2mod decoder;
3pub use self::decoder::DecoderReader;
4
5#[cfg(test)]
6mod decoder_tests;
7