oas3-gen 0.20.0

A rust type generator for OpenAPI v3.1.x specification.
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::struct_excessive_bools)]

pub(crate) mod analyzer;
pub(crate) mod ast;
pub(crate) mod codegen;
pub(crate) mod converter;
pub mod operation_registry;
pub mod orchestrator;
pub(crate) mod schema_graph;

#[cfg(test)]
mod tests;