sekkei 0.1.1

Sekkei (設計) — canonical OpenAPI 3.0 serde types, multi-format loading, and ref resolution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Sekkei — canonical `OpenAPI` 3.0 serde types, multi-format loading, and ref resolution.

pub mod error;
pub mod load;
pub mod types;
pub mod visitor;

#[cfg(test)]
pub(crate) mod test_fixtures;

pub use error::*;
pub use load::*;
pub use types::*;
pub use visitor::*;

#[cfg(any(test, feature = "test-support"))]
pub use load::MockSpecLoader;