cargo-governor 2.0.3

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Status command options

use clap::Parser;

/// Status command options
#[derive(Parser, Debug, Clone)]
pub struct StatusOpts {
    /// Show all crates including unchanged
    #[arg(long)]
    pub all: bool,

    /// Show dependency graph
    #[arg(long)]
    pub show_deps: bool,
}