kutil_std/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(missing_docs)]

/*!
Various Rust utilities to enhance the standard library.

Part of the Kutil family of Rust utility libraries.

The word "kutil" means "do-it-yourselfer" in Czech.

For more information and usage examples see the
[home page](https://github.com/tliron/rust-kutil).
*/

mod dyn_writer;

#[allow(unused_imports)]
pub use dyn_writer::*;