blob: 40e01f11850ffd47bf33ca44f9fb8b586f4793fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
use clap::Args;
#[derive(Args)]
pub struct BumpArgs {
/// Package(s) to bump
pub packages: Vec<String>,
/// Only bump packages in require-dev
#[arg(short = 'D', long)]
pub dev_only: bool,
/// Only bump packages in require
#[arg(short = 'R', long)]
pub no_dev_only: bool,
/// Only output what would be changed, do not modify files
#[arg(long)]
pub dry_run: bool,
}
pub fn execute(_args: &BumpArgs) {
todo!()
}
|