sazparser

A parser for SAZ file types generated by Fiddler.

Example

```rust use std::env; use sazparser;

fn main() { let args: Vec = env::args().collect();

// args[1] will be the file to parse
let saz = sazparser::parse(&*args[1]);

match saz {
    Ok(v) => {
        // use parsed information
        println!("{:?}", v);
    }
    Err(e) => {
        panic!("{}", e);
    }
}

} ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.