enc 0.19.0

This library aids in processing encoded data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use decoder::*;
pub use encoder::*;
pub use string_encoder::*;
pub use validator::*;

mod decoder;
mod encoder;
mod string_encoder;
mod validator;

pub(in crate::data) mod util;

#[cfg(feature = "base-64")]
pub mod base_64;
#[cfg(feature = "hex")]
pub mod hex;
#[cfg(feature = "percent")]
pub mod percent;