parse_postman_collection 0.2.4

A Postman Collection serialization & deserialization library.
Documentation
use std::io::Write;

fn main() {
    if let Some(path) = std::env::args().nth(1) {
        match parse_postman_collection::from_path(path) {
            Ok(spec) => {
                println!("Found v2.1.0 collection with the name: {}", spec.info.name);
            }
            Err(e) => {
                let stderr = &mut ::std::io::stderr();
                let errmsg = "Error writing to stderr";

                writeln!(stderr, "error: {}", e).expect(errmsg);

                for e in e.iter().skip(1) {
                    writeln!(stderr, "caused by: {}", e).expect(errmsg);
                }

                // The backtrace is not always generated. Try to run this example
                // with `RUST_BACKTRACE=1`.
                if let Some(backtrace) = e.backtrace() {
                    writeln!(stderr, "backtrace: {:?}", backtrace).expect(errmsg);
                }

                ::std::process::exit(1);
            }
        }
    }
}