forge-pipeline 0.1.20

Pipeline orchestration for OpenAPI Forge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Stage orchestration: parse → light-normalize → transformers →
//! full-normalize → generator → output guard.
//!
//! The driver collects **all** diagnostics from a stage before deciding
//! whether to halt. The default policy halts before the next stage if the
//! preceding stage produced any `error`-severity diagnostics.

#![forbid(unsafe_code)]

mod driver;

pub use driver::{run, PipelineConfig, PipelineError, PipelineOutput, StagePolicy};