openapi-nexus-parser 0.0.1-alpha.2

OpenAPI 3.1 to code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! OpenAPI specification parser
//!
//! This crate provides parsing functionality for OpenAPI specifications,
//! with a focus on YAML parsing and thorough error checking.

pub mod error;
pub mod parser;
pub mod serde_error;

pub use error::ParseError;
pub use parser::parse_file;
pub use serde_error::SerdeErrorExtractor;