Skip to main content

arcature_cli/
lib.rs

1//! Arcature application lifecycle command-line interface.
2//!
3//! The `arcature-cli` package installs the `arc` binary. It orchestrates
4//! Cargo and the certified Node/pnpm/Vite development toolchain while leaving
5//! each upstream command directly usable. The implementation is intentionally
6//! not a general-purpose CLI SDK; [`run`] is exposed only as the binary's
7//! stable bootstrap boundary.
8
9#![forbid(unsafe_code)]
10
11mod cli;
12mod commands;
13mod contracts;
14mod error;
15mod metadata;
16mod process;
17mod project;
18mod script;
19mod stack;
20mod tool;
21
22pub use cli::run;