ccgo 3.7.0

A high-performance C++ cross-platform build CLI
//! CCGO CLI - A high-performance C++ cross-platform build tool
//!
//! This is the Rust implementation of the ccgo CLI, providing fast startup
//! and native build orchestration with ZERO Python dependency.
//!
//! ## Architecture
//!
//! ```text
//! Rust CLI → build/ modules → CMake/Gradle/Hvigor (direct)
//! ```

mod build;
mod cli;
mod collection;
mod commands;
mod config;
mod dependency;
mod error;
mod exec;
mod lockfile;
pub mod registry;
mod testing;
mod utils;
mod version;
mod workspace;

use anyhow::Result;
use clap::Parser;

use cli::Cli;

fn main() -> Result<()> {
    let cli = Cli::parse();
    cli.execute()
}