openapi_nexus_parser/lib.rs
1//! OpenAPI specification parser
2//!
3//! This crate provides parsing functionality for OpenAPI specifications,
4//! with a focus on YAML parsing and thorough error checking.
5
6pub mod error;
7pub mod parser;
8pub mod serde_error;
9
10pub use error::ParseError;
11pub use parser::{parse_content_json, parse_content_yaml, parse_file};
12pub use serde_error::SerdeErrorExtractor;