torvyn_cli/lib.rs
1//! Torvyn CLI — the developer-facing command-line interface for the
2//! Torvyn ownership-aware reactive streaming runtime.
3//!
4//! This binary provides commands for project scaffolding, contract validation,
5//! pipeline execution, benchmarking, tracing, packaging, and environment diagnostics.
6
7#![forbid(unsafe_code)]
8#![deny(missing_docs)]
9
10pub mod cli;
11pub mod commands;
12pub mod errors;
13pub mod output;
14pub mod templates;