diff options
author | fxqnlr <[email protected]> | 2024-08-17 00:14:10 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-08-17 00:14:10 +0200 |
commit | 137346307248bc9e327847e549c3d6c24b3b11f3 (patch) | |
tree | 94d73000aa881c912f93eccbfb9e0d0a7c5857ea /src/cli.rs | |
parent | 371a77a994aeb0beae53f24a0edbf99d70133c33 (diff) | |
download | rsrclean-137346307248bc9e327847e549c3d6c24b3b11f3.tar rsrclean-137346307248bc9e327847e549c3d6c24b3b11f3.tar.gz rsrclean-137346307248bc9e327847e549c3d6c24b3b11f3.zip |
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 | } |