har-v0-8-1

Crates.iohar-v0-8-1
lib.rshar-v0-8-1
version0.8.1
sourcesrc
created_at2023-04-05 17:08:23.458641
updated_at2023-04-05 17:08:23.458641
descriptionA HTTP Archive format (HAR) serialization & deserialization library.
homepage
repositoryhttps://github.com/mandrean/har-rs
max_upload_size
id831239
size6,936,068
Max Kalhama (Kalhama)

documentation

https://docs.rs/har

README

har-rs

HTTP Archive format (HAR) serialization & deserialization library, written in Rust.

Latest version Documentation License

Install

Add the following to your Cargo.toml file:

[dependencies]
har = "0.8"

Use

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.

Contribute

This project follows semver, conventional commits and semantic releasing using mandrean/semantic-rs.

Note

Inspired by softprops/openapi.

Commit count: 60

cargo fmt