blob: d9b0cafb39eee4564a104e2ebcedb13fa197a302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use clap::Args;
#[derive(Args)]
pub struct LicensesArgs {
/// Output format (text, json, summary)
#[arg(short, long)]
pub format: Option<String>,
/// Disables listing of require-dev packages
#[arg(long)]
pub no_dev: bool,
/// List packages from the lock file
#[arg(long)]
pub locked: bool,
}
pub fn execute(_args: &LicensesArgs) {
todo!()
}
|