Crates.io | oas3 |
lib.rs | oas3 |
version | 0.12.1 |
source | src |
created_at | 2019-08-09 15:54:26.388152 |
updated_at | 2024-10-11 13:29:02.819319 |
description | Structures and tools to parse, navigate, and validate OpenAPI v3.1 specifications |
homepage | |
repository | https://github.com/x52dev/oas3-rs |
max_upload_size | |
id | 155384 |
size | 118,942 |
oas3
Structures and tools to parse, navigate and validate OpenAPI v3.1 specifications.
Note that due to v3.1 being a breaking change from v3.0, you may have trouble correctly parsing specs in the older format.
match oas3::from_path("path/to/openapi.yml") {
Ok(spec) => println!("spec: {:?}", spec),
Err(err) => println!("error: {}", err)
}