handy/lib.rs
1#![forbid(unsafe_code)]
2#![warn(clippy::pedantic)]
3
4pub mod errors;
5
6#[cfg(feature = "collections")]
7pub mod collections;
8
9#[cfg(feature = "fs")]
10pub mod fs;
11
12pub mod helper;
13
14#[cfg(feature = "human")]
15pub mod human;
16
17#[cfg(feature = "itertools")]
18pub mod iter;
19
20#[cfg(feature = "parse")]
21pub mod parse;
22
23#[cfg(feature = "pattern")]
24pub mod pattern;