parse_postman_collection

Crates.ioparse_postman_collection
lib.rsparse_postman_collection
version0.2.3
sourcesrc
created_at2024-04-15 12:14:13.261476
updated_at2024-04-19 07:47:17.213896
descriptionA Postman Collection serialization & deserialization library.
homepage
repositoryhttps://github.com/julien-cpsn/postman-collection-rs
max_upload_size
id1209169
size121,737
Julien C. (Julien-cpsn)

documentation

https://github.com/julien-cpsn/postman-collection-rs

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: 26

cargo fmt