apple-bloom

Crates.ioapple-bloom
lib.rsapple-bloom
version0.1.8
sourcesrc
created_at2022-04-30 14:06:04.540864
updated_at2023-03-12 16:04:25.366941
descriptionRust bindings for openapi schemas
homepagehttps://github.com/hbina/apple-bloom
repositoryhttps://github.com/hbina/apple-bloom
max_upload_size
id578159
size2,167,781
Hanif Ariffin (hbina)

documentation

README

Apple Bloom

Rust crate for serializing and deserializing open api documents

Fork of softprops/openapi

Install

add the following to your Cargo.toml file

[dependencies]
apple_bloom = "0.1"

Usage

extern crate apple_bloom;

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

cargo fmt