kutil_transcoding/lib.rs
1#![warn(missing_docs)]
2
3/*!
4Various Rust utilities for transcoding.
5
6Part of the Kutil family of Rust utility libraries.
7
8The word "kutil" means "do-it-yourselfer" in Czech.
9
10For more information and usage examples see the
11[home page](https://github.com/tliron/rust-kutil).
12*/
13
14mod encoding;
15
16/// Utilities for transcoding bytes.
17pub mod bytes;
18
19/// Utilities for transcoding while reading.
20pub mod reader;
21
22#[allow(unused_imports)]
23pub use encoding::*;