rweb-openapi

Crates.iorweb-openapi
lib.rsrweb-openapi
version0.7.0
sourcesrc
created_at2020-01-22 10:50:57.093978
updated_at2021-07-25 03:26:37.952405
descriptionRust bindings for openapi schemas
homepagehttps://github.com/kdy1/openapi
repositoryhttps://github.com/kdy1/openapi
max_upload_size
id201000
size68,956
Donny/강동윤 (kdy1)

documentation

README

open api Build Status Software License crates.io

Rust crate for serializing and deserializing open api documents

Documentation

install

add the following to your Cargo.toml file

[dependencies]
openapi = "0.1"

usage

extern crate openapi;

fn main() {
  match openapi::from_path("path/to/openapi.yaml") {
    Ok(spec) => println!("spec: {:?}", spec),
    Err(err) => println!("error: {}", err)
  }
}

Doug Tangren (softprops) 2017

Commit count: 118

cargo fmt