Rust crate for serializing and deserializing open api documents
Fork of softprops/openapi
add the following to your Cargo.toml
file
toml
[dependencies]
apple_bloom = "0.1"
```rust extern crate apple_bloom;
fn main() { match applebloom::frompath("path/to/openapi.yaml") { Ok(spec) => println!("spec: {:?}", spec), Err(err) => println!("error: {}", err) } } ```