/// Base36 encoding implementation (0-9 and A-Z).
///// Base58 encoding implementation (Bitcoin-style).
//pub mod base58;
///// Base64 encoding implementation (RFC 4648).
//pub mod base64;
///// Hexadecimal encoding implementation (0-9 and A-F).
//pub mod hex;
///// UUEncoding implementation.
//pub mod uuencode;
pub use Base36;
//pub use base58::Base58;
//pub use base64::Base64;
//pub use hex::Hex;
//pub use uuencode::Uuencode;