#postman #deserialize #serialization #collection

postman_collection

A Postman Collection serialization & deserialization library

2 unstable releases

0.2.0 Jul 8, 2022
0.1.0 Nov 17, 2018

#2017 in Encoding

Download history 1/week @ 2024-11-20 2/week @ 2024-12-04 5/week @ 2024-12-11 2/week @ 2024-12-18 13/week @ 2025-01-01 10/week @ 2025-01-08 8/week @ 2025-01-15 6/week @ 2025-01-22 9/week @ 2025-01-29 17/week @ 2025-02-05 18/week @ 2025-02-12 19/week @ 2025-02-19 31/week @ 2025-02-26 46/week @ 2025-03-05

118 downloads per month

MIT license

96KB
1.5K SLoC

postman-collection-rs

Postman Collection serialization & deserialization library, written in Rust.

Build Status Latest version Documentation License

Install

Add the following to your Cargo.toml file:

[dependencies]
postman_collection = "0.1"

Use

extern crate postman_collection;

fn main() {
  match postman_collection::from_path("path/to/postman-collection.json") {
    Ok(spec) => println!("spec: {:?}", spec),
    Err(err) => println!("error: {}", err)
  }
}

See examples/printer.rs for more.

Contribute

This project follows semver, conventional commits and semantic releasing using semantic-rs.

Note

Inspired by softprops/openapi.

Dependencies

~7–14MB
~200K SLoC