HTTP Archive format (HAR) serializing & deserializing library, written purely in Rust.
Add the following to your Cargo.toml
file:
toml
[dependencies]
har = "0.1"
```rust extern crate har;
fn main() { match har::from_path("path/to/file.har") { Ok(spec) => println!("spec: {:?}", spec), Err(err) => println!("error: {}", err) } } ```
This project follows [semver], [conventional commits] and semantic releasing using [semantic-rs].
Inspired by softprops/openapi.