Crates.io | parse_postman_collection |
lib.rs | parse_postman_collection |
version | 0.2.3 |
source | src |
created_at | 2024-04-15 12:14:13.261476 |
updated_at | 2024-04-19 07:47:17.213896 |
description | A Postman Collection serialization & deserialization library. |
homepage | |
repository | https://github.com/julien-cpsn/postman-collection-rs |
max_upload_size | |
id | 1209169 |
size | 121,737 |
Postman Collection serialization & deserialization library, written in Rust.
Add the following to your Cargo.toml
file:
[dependencies]
postman_collection = "0.1"
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.
This project follows semver, conventional commits and semantic releasing using semantic-rs.
Inspired by softprops/openapi.