cadi_builder/
lib.rs

1//! CADI Builder - Build engine and transformation pipeline
2//!
3//! This crate provides the build engine that transforms source CADI chunks
4//! through intermediate representations to final artifacts.
5
6pub mod engine;
7pub mod cache;
8pub mod transform;
9pub mod plan;
10
11pub use engine::*;
12pub use cache::*;
13pub use transform::*;
14pub use plan::*;