clevert 0.8.1

Extensible file converter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_export]
macro_rules! log {
    (warn:$($arg:tt)*) => {
        println!("{} {}", yansi::Paint::yellow("[clevert]").bold(), format!($($arg)*));
    };
    (error:$($arg:tt)*) => {
        println!("{} {}", yansi::Paint::red("[clevert]").bold(), format!($($arg)*));
    };
    (stay:$($arg:tt)*) => {
        print!("\r{} {}", yansi::Paint::cyan("[clevert]").bold(), format!($($arg)*));
        use std::io::Write;
        std::io::stdout().flush().unwrap();
    };
    ($($arg:tt)*) => {
        println!("{} {}", yansi::Paint::cyan("[clevert]").bold(), format!($($arg)*));
    };
}