roas

Crates.ioroas
lib.rsroas
version0.6.0
created_at2023-10-22 07:54:26.135449+00
updated_at2025-09-25 18:38:28.511363+00
descriptionRust OpenAPI Specification
homepagehttps://github.com/sv-tools/roas
repositoryhttps://github.com/sv-tools/roas
max_upload_size
id1010434
size917,001
Sergey Vilgelm (SVilgelm)

documentation

README

roas

Rust OpenAPI Specification (v2.0, v3.0.X and v3.1.X)

crates.io docs.rs

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:

[dependencies]
roas = "0.4"  

Examples

use roas::v3_1::spec::Spec;
use roas::validation::{Options, Validate};

...

let spec = serde_json::from_str::<Spec>(raw_json).unwrap();
spec.validate(Options::IgnoreMissingTags | Options::IgnoreExternalReferences).unwrap();

...

Commit count: 72

cargo fmt