clap-mcp 0.0.3-rc.1

Enrich your CLI with MCP capabilities
Documentation
fn main() {
    // Git commit (short hash)
    let git_commit = std::process::Command::new("git")
        .args(["rev-parse", "--short", "HEAD"])
        .output()
        .ok()
        .and_then(|o| {
            if o.status.success() {
                String::from_utf8(o.stdout).ok()
            } else {
                None
            }
        })
        .map(|s| s.trim().to_string())
        .unwrap_or_else(|| "unknown".to_string());
    println!("cargo:rustc-env=CLAP_MCP_GIT_COMMIT={}", git_commit);

    // Build date/time (UTC)
    let build_date = chrono::Utc::now()
        .format("%Y-%m-%d %H:%M:%S UTC")
        .to_string();
    println!("cargo:rustc-env=CLAP_MCP_BUILD_DATE={}", build_date);
}