A parser for SAZ file types generated by Fiddler.
```rust use std::env; use sazparser;
fn main() {
let args: Vec
// 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);
}
}
} ```
Licensed under either of
at your option.
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.