cargo-governor 2.0.3

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>,

    /// Allow the workspace version to differ from the last release tag
    #[arg(long)]
    pub allow_version_drift: bool,
}