blob: 697b3f66ed3332abc7a7b7417181e471573822cc (
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 CheckPlatformReqsArgs {
/// Disables checking of require-dev packages requirements
#[arg(long)]
pub no_dev: bool,
/// Check packages from the lock file
#[arg(long)]
pub lock: bool,
/// Output format (text, json)
#[arg(short, long)]
pub format: Option<String>,
}
pub fn execute(_args: &CheckPlatformReqsArgs) {
todo!()
}
|