roas
Rust OpenAPI Specification (v2.0, v3.0.X and v3.1.X)
Parsing and generating OpenAPI Specification:
- OpenAPI Specification v2.0 (v2: old specification, disabled by default)
- OpenAPI Specification v3.0.x (v3_0: default feature)
- OpenAPI Specification v3.1.x (v3_1:; experimental and disabled by default)
[!CAUTION] The project is in early development stage, so the API may change in the future. Consider any 0.x.x version as unstable and subject to breaking changes.
Usage
To use roas, add it to your Cargo.toml:
cargo add roas
or manually add the following lines:
[]
= "0.4"
Examples
use Spec;
use ;
...
let spec = .unwrap;
spec.validate.unwrap;
...