-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #7710 - dtolnay:argorder, r=alexcrichton
Pass --edition after --crate-name This PR swaps the order of the --edition and --crate-name args in the rustc invocation. - Before: `rustc --edition=2018 --crate-name cargo ...` - After: `rustc --crate-name cargo --edition=2018 ...` The crate name is a lot more relevant when looking at processes in `top` for example, and should appear first.
- Loading branch information
Showing
2 changed files
with
9 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters