zarust 0.2.0

Rust implementation of the ZArchive format
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod cli;

use std::{env, process::ExitCode};

fn main() -> ExitCode {
    let code = match cli::args::parse(env::args_os().skip(1)) {
        Ok(invocation) => cli::run(invocation),
        Err(error) => cli::report_usage(&error),
    };
    ExitCode::from(code)
}