har-rs
\nHTTP Archive format (HAR) serialization & deserialization library, written in Rust.
\n\n\nInstall
\nAdd the following to your Cargo.toml
file:
[dependencies]\nhar = \"0.8\"
Use
\nSimplest possible example:
\nuse har::from_path;\n\nfn main() {\n match har::from_path(\"path/to/file.har\") {\n Ok(spec) => println!(\"spec: {:?}\", spec),\n Err(err) => println!(\"error: {}\", err)\n }\n}
See docs.rs/har for the full library API documentation.
\nContribute
\nThis project follows semver, conventional commits and semantic releasing using mandrean/semantic-rs.
\nNote
\nInspired by softprops/openapi.
\n