Postman Collection serialization & deserialization library, written in Rust.
Add the following to your Cargo.toml
file:
toml
[dependencies]
postman_collection = "0.1"
```rust extern crate postman_collection;
fn main() { match postmancollection::frompath("path/to/postman-collection.json") { Ok(spec) => println!("spec: {:?}", spec), Err(err) => println!("error: {}", err) } } ```
See examples/printer.rs for more.
This project follows [semver], [conventional commits] and semantic releasing using [semantic-rs].
Inspired by softprops/openapi.