zenith-tool 0.0.7

The Zenith command-line interface (the `zenith` binary) for the design-document toolchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Variant generation: pure engine and CLI command wiring.
//!
//! - `engine` — the pure in-memory variant expansion engine.
//! - `run`    — the CLI entry point: file I/O, rendering, manifest, output.
//!
//! Module root is wiring only: re-exports + submodule declarations.

mod engine;
mod run;

pub use engine::{VariantExpansion, VariantOutcome, VariantResult, expand_variants};
pub use run::{
    VariantCmdErr, VariantOutputs, VariantReport, VariantResultRecord, build_manifest, run_variant,
    to_json_output,
};