arma_preset_parser

Crates.ioarma_preset_parser
lib.rsarma_preset_parser
version0.3.0
sourcesrc
created_at2020-08-09 22:18:50.231187
updated_at2020-10-28 11:25:30.047554
descriptionA simple parser for ArmA 3 HTML launcher presets
homepage
repositoryhttps://gitlab.com/blackwatchbattalion/libraries/arma-3-preset-parser
max_upload_size
id274824
size27,988
WolfSkin (WolfSkin0)

documentation

README

ArmA 3 Preset Parser

This is a simple crate that was made to easily parse ArmA 3 presets into a format that was more easily ingestible by other programs. As such, it exposes few methods which cover all the most-needed cases.

Example

match arma_preset_parser::Preset::from_fs("some_path".parse().unwrap()) {
    Ok(preset) => println!("{:?}", preset),
    Err(e) => println!("{}", e)
};
Commit count: 8

cargo fmt