Disable implicit help subcommand

This commit is contained in:
David Tolnay 2023-08-05 11:13:22 -07:00
parent 23be22db3b
commit 719643c943
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -6,7 +6,7 @@ use syn_select::Selector;
const VERSION: &str = include_str!(concat!(env!("OUT_DIR"), "/version"));
#[derive(Parser)]
#[command(bin_name = "cargo", version = VERSION, author)]
#[command(bin_name = "cargo", version = VERSION, author, disable_help_subcommand = true)]
pub enum Subcommand {
/// Show the result of macro expansion.
#[command(name = "expand", version = VERSION, author)]