thiagodsti / har-rs

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

har-rs

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

Build Status Latest version Documentation License

Install

Add the following to your Cargo.toml file:

[dependencies]
har = "0.5"

Use

extern crate har;

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 semantic-rs.

Note

Inspired by softprops/openapi.

About

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

License:MIT License


Languages

Language:Rust 100.0%