postman_collection 0.3.1

A Postman Collection serialization & deserialization library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() -> postman_collection::Result<()> {
    if let Some(path) = std::env::args().nth(1) {
        let collection = postman_collection::from_path(path)?;
        println!(
            "Found {:?} collection with the name: {}",
            collection.version(),
            collection.name()
        );
    }

    Ok(())
}