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 17855e5 commit 367fe7bCopy full SHA for 367fe7b
src/bin/cargo/commands/rustc.rs
@@ -5,9 +5,9 @@ use cargo::ops;
5
pub fn cli() -> App {
6
subcommand("rustc")
7
.setting(AppSettings::TrailingVarArg)
8
- .about("Compile a package and all of its dependencies")
+ .about("Compile a package, and pass extra options to the compiler")
9
.arg(opt("quiet", "No output printed to stdout").short("q"))
10
- .arg(Arg::with_name("args").multiple(true))
+ .arg(Arg::with_name("args").multiple(true).help("Rustc flags"))
11
.arg_package("Package to build")
12
.arg_jobs()
13
.arg_targets_all(
0 commit comments