Crates.io | arma_preset_parser |
lib.rs | arma_preset_parser |
version | 0.3.0 |
source | src |
created_at | 2020-08-09 22:18:50.231187 |
updated_at | 2020-10-28 11:25:30.047554 |
description | A simple parser for ArmA 3 HTML launcher presets |
homepage | |
repository | https://gitlab.com/blackwatchbattalion/libraries/arma-3-preset-parser |
max_upload_size | |
id | 274824 |
size | 27,988 |
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.
match arma_preset_parser::Preset::from_fs("some_path".parse().unwrap()) {
Ok(preset) => println!("{:?}", preset),
Err(e) => println!("{}", e)
};