qua_format 0.1.7

Parse .qua files for the rhythm game Quaver
Documentation

qua_format

issues license version documentation

Documentation

Parse .qua files into structs, based on the .qua format of Quaver. The .qua file format uses the YAML format, so serde_yaml is used for parsing.

Example

use qua_format::Qua;
use std::fs::File;

let path = "123.qua";
let mut qua = Qua::from_file(path).unwrap();

qua.title = "Never Gonna Give You Up".to_string();

let new_file = File::create("test.qua").unwrap();
qua.to_writer(new_file).unwrap();