n4n5 1.6.4

n4n5's utility crate
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    // read config file
    match n4n5::cli_main() {
        Ok(_) => {}
        Err(e) => {
            eprintln!("{e}");
            std::process::exit(1);
        }
    }
}