gen_helm/lib.rs
1//! `gen-helm` — helm adapter for the gen ecosystem.
2//!
3//! Parses `Chart.yaml` into a typed `BuildSpec` and emits it as
4//! Cargo-equivalent typed JSON. See
5//! `theory/ECOSYSTEM-INTAKE.md` for the seven-artifact contract.
6
7pub mod adapter;
8pub mod build_spec;
9pub mod error;
10pub mod invariants;
11pub mod quirks;
12
13pub use adapter::HelmAdapter;
14pub use error::{Result, HelmError};