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 dfda89a commit 8f7ab52Copy full SHA for 8f7ab52
src/bin/cargo/commands/config.rs
@@ -6,6 +6,7 @@ pub fn cli() -> App {
6
.about("Inspect configuration values")
7
.after_help("Run `cargo help config` for more detailed information.\n")
8
.subcommand_required(true)
9
+ .arg_required_else_help(true)
10
.subcommand(
11
subcommand("get")
12
.arg(Arg::new("key").help("The config key to display"))
src/bin/cargo/commands/report.rs
@@ -7,6 +7,7 @@ pub fn cli() -> App {
.about("Generate and display various kinds of reports")
.after_help("Run `cargo help report` for more detailed information.\n")
subcommand("future-incompatibilities")
13
.alias("future-incompat")
0 commit comments