gen-helm 0.1.27

gen — helm adapter. Parses Chart.yaml + lockfile into a typed gen_types::Spec emission. One of N adapters that share the typed core via Spec/QuirkRegistry/Invariants traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `gen-helm` — helm adapter for the gen ecosystem.
//!
//! Parses `Chart.yaml` into a typed `BuildSpec` and emits it as
//! Cargo-equivalent typed JSON. See
//! `theory/ECOSYSTEM-INTAKE.md` for the seven-artifact contract.

pub mod adapter;
pub mod build_spec;
pub mod error;
pub mod invariants;
pub mod quirks;

pub use adapter::HelmAdapter;
pub use error::{Result, HelmError};