gw2_taco_parser 0.1.0

A very simple util that parses the XML and corresponding C struct trail files (using nom) from Taco (GW2 overlay), to produce a json compatible format for [Burrito](https://github.com/AsherGlick/Burrito), a GW2 overlay for Linux.
1
2
3
4
5
6
7
8
9
10
11
mod trail_parser;
mod xml_parser;

fn main() {
    let folder = "data";
    let xml_file = "dw_coral.xml";

    let j = serde_json::to_string(&xml_parser::process_taco_data(folder.to_string(), xml_file.to_string())).unwrap();
    println!("{}", j);
}