dors 0.0.8

No-fuss workspace-friendly task runner for cargo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::App;

fn main() {
    std::process::exit({
        let app_matches = dors::set_app_options(
            App::new("dors -- do things, for rust!")
                .bin_name("dors")
                .max_term_width(80),
        )
        .get_matches();

        dors::process_cmd(&app_matches)
    });
}