#openapi #swagger #oas

oas3

Structures and tools to parse, navigate, and validate OpenAPI v3.1 specifications

20 releases (breaking)

new 0.16.0 Apr 3, 2025
0.15.0 Feb 10, 2025
0.14.0 Jan 27, 2025
0.13.1 Dec 29, 2024
0.0.1 Aug 9, 2019

#274 in Parser implementations

Download history 1301/week @ 2024-12-11 819/week @ 2024-12-18 398/week @ 2024-12-25 827/week @ 2025-01-01 1943/week @ 2025-01-08 1331/week @ 2025-01-15 1480/week @ 2025-01-22 1312/week @ 2025-01-29 1399/week @ 2025-02-05 1032/week @ 2025-02-12 890/week @ 2025-02-19 891/week @ 2025-02-26 1035/week @ 2025-03-05 1009/week @ 2025-03-12 1089/week @ 2025-03-19 749/week @ 2025-03-26

3,955 downloads per month
Used in 10 crates (9 directly)

MIT license

135KB
1.5K SLoC

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

let yaml = std::fs::read_to_string("path/to/openapi.yml").unwrap();

match oas3::from_yaml(yaml) {
  Ok(spec) => println!("spec: {:?}", spec),
  Err(err) => println!("error: {}", err)
}

Dependencies

~5–8MB
~144K SLoC