postman_collection

Crates.iopostman_collection
lib.rspostman_collection
version0.2.0
sourcesrc
created_at2018-11-17 21:23:51.933876
updated_at2022-07-08 05:06:49.505608
descriptionA Postman Collection serialization & deserialization library.
homepage
repositoryhttps://github.com/mandrean/postman-collection-rs
max_upload_size
id97304
size317,143
Sebastian Mandrean (mandrean)

documentation

https://docs.rs/postman_collection

README

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.

Commit count: 10

cargo fmt