toiletcli-0.4.1 has been yanked.
toiletcli
Minimal 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 and a demo cat program, which can be built/run with:
$ cargo run --example <...>
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 common;
//! Common functions.
use common;
let path = "toilet/bin/program";
let name = name_from_path;
assert_eq!;