toiletcli/lib.rs
1//! # toiletcli
2//!
3//! A tiny framework for command line applications, including a command line
4//! argument parser.
5//!
6//! Complete overview can be found in the documentation for each module.
7
8#[cfg(feature = "colors")]
9pub mod colors;
10pub mod common;
11#[cfg(feature = "escapes")]
12pub mod escapes;
13#[cfg(feature = "flags")]
14pub mod flags;