Crates.io | har |
lib.rs | har |
version | 0.8.1 |
source | src |
created_at | 2018-11-16 10:43:40.726393 |
updated_at | 2024-10-15 23:29:32.734404 |
description | A HTTP Archive format (HAR) serialization & deserialization library. |
homepage | |
repository | https://github.com/mandrean/har-rs |
max_upload_size | |
id | 96983 |
size | 67,150 |
HTTP Archive format (HAR) serialization & deserialization library, written in Rust.
Add the following to your Cargo.toml
file:
[dependencies]
har = "0.8"
Simplest possible example:
use har::from_path;
fn main() {
match har::from_path("path/to/file.har") {
Ok(spec) => println!("spec: {:?}", spec),
Err(err) => println!("error: {}", err)
}
}
See docs.rs/har for the full library API documentation.
This project follows semver, conventional commits and semantic releasing using mandrean/semantic-rs.
Inspired by softprops/openapi.