mbrkit 1.0.1

A CLI for building, inspecting, extracting, and verifying MBR-backed disk images
Documentation
1
2
3
4
5
6
7
8
9
10
/// The binary entry point delegates all application logic to the library crate.
fn main() {
    if let Err(error) = mbrkit::run() {
        if error.should_print() {
            eprintln!("{error}");
        }

        std::process::exit(error.exit_code());
    }
}