oas3

Crates.iooas3
lib.rsoas3
version0.12.1
sourcesrc
created_at2019-08-09 15:54:26.388152
updated_at2024-10-11 13:29:02.819319
descriptionStructures and tools to parse, navigate, and validate OpenAPI v3.1 specifications
homepage
repositoryhttps://github.com/x52dev/oas3-rs
max_upload_size
id155384
size118,942
Rob Ede (robjtede)

documentation

README

oas3

crates.io Documentation dependency status MIT or Apache 2.0 licensed
CI codecov Version Download

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.

Example

match oas3::from_path("path/to/openapi.yml") {
  Ok(spec) => println!("spec: {:?}", spec),
  Err(err) => println!("error: {}", err)
}
Commit count: 193

cargo fmt