bunt 0.2.9

Simple macros to write colored and formatted text to a terminal. Based on `termcolor`, thus also cross-platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    println!();
    bunt::println!("I really like {$yellow}lemons{/$}! Like, {$blue+italic}a lot{/$}.");

    let v = vec![1, 2, 3];
    bunt::println!("Here is some data: {[green]:?}. {$bold}Length: {[cyan]}{/$}", v, v.len());
    println!();

    let ty = "u32";
    bunt::eprintln!("{$bold+red}error:{/$} invalid value for type `{[blue]}`", ty);
    bunt::eprintln!("");
    bunt::eprintln!("{$italic}Just {$yellow}kidding{/$}{/$}, there is no {$magenta}error{/$} :)");
    println!();
}