termcolors 0.2.2

Format text and display colors in the terminal.
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use termcolors::format;

fn main() {
    let args = format::Args::parse();
    print!("{}", format::format(args));
}