triseratops 0.0.3

The robust, in-depth Serato Parser & Serializer.
Documentation
1
2
3
4
5
6
7
8
9
10
#[test]
fn {name}() {{
    println!("Parsing file: {filepath}");
    let input = include_bytes!("{filepath}");
    let res = database::parse(&input[..]);
    if let Err(err) = res {{
        eprintln!("Error: {{:?}}", err);
        unreachable!();
    }}
}}