fabro/lib/crates/fabro-cli/src/lib.rs
Bryan Helmkamp be084c1944
refactor(dev): decouple CLI reference generation
Expose the CLI reference renderer through a hidden fabro subcommand so fabro-dev can refresh docs without linking fabro-cli. Gate the fabro-dev binary behind the dev feature and update the cargo dev alias to opt into it explicitly.
2026-05-06 12:31:02 -04:00

9 lines
246 B
Rust

#![expect(
dead_code,
reason = "the library exports manifest builder helpers while the binary owns most CLI dispatch"
)]
mod args;
mod manifest_builder;
pub use manifest_builder::{BuiltManifest, ManifestBuildInput, build_run_manifest};