mpq-rs 0.1.0

A pure-rust implementation of a MoPaQ archive reader and writer
Documentation
1
2
3
4
5
6
7
8
use mpq_rs::run::run;

fn main() {
    if let Err(e) = run() {
        eprintln!("{e}");
        std::process::exit(1);
    }
}