-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor command definition #6894
Conversation
k-nasa
commented
May 1, 2019
- Removed call 'about'
- Changed the string "cargo" to use crate_name
r? @nrc (rust_highfive has picked a reviewer for you, use r? to override) |
src/bin/cargo/cli.rs
Outdated
@@ -184,14 +184,13 @@ fn execute_subcommand(config: &mut Config, args: &ArgMatches<'_>) -> CliResult { | |||
} | |||
|
|||
fn cli() -> App { | |||
App::new("cargo") | |||
App::new(clap::crate_name!()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why make this change? ISTM this should be the name of the application, not the name of the crate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. I fixed it.
f577389
to
1577efa
Compare
@bors r+ Thanks! |
📌 Commit 1577efa has been approved by |
Refactor command definition - Removed call 'about' - Changed the string "cargo" to use crate_name
☀️ Test successful - checks-travis, status-appveyor |
Update cargo 12 commits in beb8fcb5248dc2e6aa488af9613216d5ccb31c6a..759b6161a328db1d4863139e90875308ecd25a75 2019-04-30 23:58:00 +0000 to 2019-05-06 20:47:49 +0000 - Small things (rust-lang/cargo#6910) - Fix skipping over invalid registry packages (rust-lang/cargo#6912) - Fixes rust-lang/cargo#6874 (rust-lang/cargo#6905) - doc: Format examples of version to ease reading (rust-lang/cargo#6907) - fix more typos (codespell) (rust-lang/cargo#6903) - Parse less JSON on null builds (rust-lang/cargo#6880) - chore: Update opener to 0.4 (rust-lang/cargo#6902) - Update documentation for auto-discovery. (rust-lang/cargo#6898) - Update some doc links. (rust-lang/cargo#6897) - Default Cargo.toml template provide help for completing the metadata (rust-lang/cargo#6881) - Run 'cargo fmt --all' (rust-lang/cargo#6896) - Refactor command definition (rust-lang/cargo#6894)