cargo-governor 1.2.0

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
//! Plan command options

use clap::Parser;

/// Plan command options
#[derive(Parser, Debug, Clone)]
pub struct PlanOpts {
    /// Include already published crates in plan
    #[arg(long)]
    pub include_published: bool,

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

    /// Format: json (default), dot (graphviz)
    #[arg(long)]
    pub format: Option<String>,
}