mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
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.
9 lines
246 B
Rust
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};
|