1//! bin-encode-decode 2//! 3//! A high-performance binary encode and decode library 4//! that supports customizable character sets beyond Base64. 5 6mod common; 7mod decode; 8mod encode; 9 10pub use {common::*, decode::*, encode::*}; 11 12use std::{collections::HashSet, fmt};