toiletcli-0.2.1 has been yanked.
toiletcli
A collection of common functions that I use in my CLI applications. This is another I-use-the-language-for-the-first-time repo (and I had a lot of fun with Rust so far).
pub mod flags;
//! Utilities for command line flags 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;
//! Tools for ASCII terminal colors.
//! Contains enums that implement `Display` trait.
use Color;
use PrintableColor;
println!;
pub mod common;
//! Common modules and functions.
use common;
let path = "toilet/bin/program";
let name = name_from_path;
assert_eq!;