termfmt 0.2.0

Opinionated formatting for library primatives with color and outputing to the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use {
    clap::{TermFmtExt, TermFmtsExt},
    color::{Bg, Fg, Style, TermStyle},
    command::{CommandOutputError, CommandStatusError},
    fmt::{BundleFmt, DataFmt, TermFmt},
    output::{
        termarrow, termarrow_fg, termerr, termh1, termh2, termh3, terminfo, termprefix1,
        termprefix2, termprefix3,
    },
};

pub mod chrono;

mod clap;
mod color;
mod command;
mod fmt;
mod output;