We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cafc000 commit 8306410Copy full SHA for 8306410
src/cargo/util/command_prelude.rs
@@ -35,10 +35,8 @@ pub trait AppExt: Sized {
35
all: &'static str,
36
exclude: &'static str,
37
) -> Self {
38
- self.arg_package_spec_simple(package)
+ self.arg_package_spec_no_all(package, all, exclude)
39
._arg(opt("all", "Alias for --workspace (deprecated)"))
40
- ._arg(opt("workspace", all))
41
- ._arg(multi_opt("exclude", "SPEC", exclude))
42
}
43
44
/// Variant of arg_package_spec that does not include the `--all` flag
0 commit comments