har-rs
======
[HTTP Archive format (HAR)][har] serialization & deserialization library, written in Rust.
[](https://crates.io/crates/har)
[](https://docs.rs/har)

Install
-------
Add the following to your `Cargo.toml` file:
```toml
[dependencies]
har = "0.7"
```
Use
---
```rust
use har::from_path;
fn main() {
match har::from_path("path/to/file.har") {
Ok(spec) => println!("spec: {:?}", spec),
Err(err) => println!("error: {}", err)
}
}
```
Contribute
----------
This project follows [semver], [conventional commits] and semantic releasing using [mandrean/semantic-rs].
Note
----
Inspired by [softprops/openapi](https://github.com/softprops/openapi).
[har]: https://en.wikipedia.org/wiki/.har
[semver]: https://semver.org/
[conventional commits]: https://www.conventionalcommits.org
[mandrean/semantic-rs]: https://github.com/mandrean/semantic-rs