fs_mod_parser 0.1.5

Mod File Parser for Farming Simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Example of scanning a mod

fn main() {
    let options = fs_mod_parser::ModParserOptions {
        skip_detail_icons: true,
        ..Default::default()
    };
    let out =
        fs_mod_parser::parse_mod_with_options("./tests/test_mods/DETAIL_Samples.zip", &options)
            .to_json_pretty();
    println!("{out}");
}