postman-collection-rs
=====================
[Postman Collection][postman_collection] serialization & deserialization library, written in Rust.
[](https://travis-ci.org/mandrean/postman-collection-rs)
[](https://crates.io/crates/postman_collection)
[](https://docs.rs/postman_collection)

Install
-------
Add the following to your `Cargo.toml` file:
```toml
[dependencies]
postman_collection = "0.1"
```
Use
---
```rust
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](examples/printer.rs) for more.
Contribute
----------
This project follows [semver], [conventional commits] and semantic releasing using [semantic-rs].
Note
----
Inspired by [softprops/openapi](https://github.com/softprops/openapi).
[postman_collection]: https://www.getpostman.com/collection
[semver]: https://semver.org/
[conventional commits]: https://www.conventionalcommits.org
[semantic-rs]: https://github.com/semantic-rs/semantic-rs