#zip #parser #archive #zip-archive #fiddler

sazparser

Library to parse SAZ files generated by Fiddler

2 releases

0.1.1 Feb 9, 2021
0.1.0 Jan 30, 2021

#76 in #zip-archive

MIT/Apache

11KB
218 lines

sazparser

A parser for SAZ file types generated by Fiddler.

Example

use std::env;
use sazparser;

fn main() {
    let args: Vec<String> = 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.

Dependencies

~4–6MB
~101K SLoC