parse_postman_collection

Crates.ioparse_postman_collection
lib.rsparse_postman_collection
version0.2.4
created_at2024-04-15 12:14:13.261476+00
updated_at2025-12-27 23:08:58.063667+00
descriptionA Postman Collection serialization & deserialization library.
homepage
repositoryhttps://github.com/julien-cpsn/postman-collection-rs
max_upload_size
id1209169
size120,915
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