Ncmdump.rs
Credit
Origin
- anonymous5l/ncmdump: Original repository
- MegrezZhu/qmcdump: Original repository
Binary Usage
Install
You can install by Cargo.
cargo install ncmdump-bin
Or download the binary file by GitHub Release.
Simple usage
ncmdump [FILES]...
More options
Usage: ncmdump [OPTIONS] [FILES]...
Arguments:
[FILES]... Specified the files to convert
Options:
-o, --output <OUTPUT> Specified the output directory. Default it's the same directory with input file
-v, --verbose Verbosely list files processing
-h, --help Print help
-V, --version Print version
Library Usage
Install
You can add this to your Cargo.toml
:
= "0.8.0"
Also, you can use this command to install this crate, if you installed cargo-edit
cargo add ncmdump
Simple Usage
use File;
use Path;
use Result;
use Ncmdump;
For more usage, please check the document.