Structures and tools to parse and navigate OpenAPI v3 Spec files.
Doug Tangren (softprops) 2017
add the following to your Cargo.toml
file
toml
[dependencies]
oas3 = "*"
```rust extern crate oas3;
fn main() { match oas3::from_path("path/to/openapi.yaml") { Ok(spec) => println!("spec: {:?}", spec), Err(err) => println!("error: {}", err) } } ```