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 process;
16mod project;
17mod script;
18mod stack;
19mod tool;
20
21pub use cli::run;