diff options
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -13,6 +13,10 @@ pub struct Args { | |||
13 | #[arg(short, long)] | 13 | #[arg(short, long)] |
14 | pub doc: bool, | 14 | pub doc: bool, |
15 | 15 | ||
16 | #[arg(long, default_value_t = true)] | 16 | #[arg(long)] |
17 | pub dry_run: bool, | 17 | pub dry_run: bool, |
18 | |||
19 | #[cfg(all(feature = "ext-cargo", feature = "int-cargo"))] | ||
20 | #[arg(long)] | ||
21 | pub ext_cargo: bool, | ||
18 | } | 22 | } |