use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about = "A tool to analyze and optimize project dependencies")]
pub struct Cli{
#[arg(short, long, default_value = "Cargo.lock")]
pub lockfile: String,
#[arg(long)]
pub fix: bool,
}