toiletcli-0.2.3 has been yanked.
toiletcli
Light framework for command line applications. This is I-use-the-language-for-the-first-time project (I had a lot of fun with Rust so far).
This crate contains examples for each module and a demo cat program, which can be built/run with:
$ cargo run --example <cat/flags/colors>
pub mod flags;
//! Command line flag parsing.
use args;
use flags;
use *;
let mut color: String;
let mut show_help: bool;
let mut flags = flags!;
let args = parse_flags;
pub mod colors;
//! ANSI terminal colors as enums that all implement `Display` and `FromStr` traits.
use Color;
use PrintableColor;
println!;
let weird_style = new
.foreground
.background
.add_style
.underline_color
.underline_style
.build;
println!;
pub mod common;
//! Common functions.
use common;
let path = "toilet/bin/program";
let name = name_from_path;
assert_eq!;