cargo-rustc (1) Linux Manual Page
NAME
cargo-rustc – Compile a package and all of its dependencies
SYNOPSIS
cargo rustc [OPTIONS] [–] [<OPTS>…]
DESCRIPTION
The specified target for the current package (or package specified by SPEC if provided) will be compiled along with all of its dependencies. The specified … will all be passed to the final compiler invocation, not any of the dependencies. Note that the compiler will still unconditionally receive arguments such as -L, –extern, and –crate-type, and the specified … will simply be added to the compiler invocation.
This command requires that only one target is being compiled. If more than one target is available for the current package the filters of –lib, –bin, etc, must be used to select which target is compiled. To pass flags to all compiler processes spawned by Cargo, use the $RUSTFLAGS environment variable or the build.rustflags configuration option.
OPTIONS
-h, –help- Print this message.
-pSPEC, –package SPEC- The profile to compiler for.
-jN, –jobs N- Number of parallel jobs, defaults to # of CPUs.
–lib- Build only this package’s library.
–binNAME- Build only the specified binary.
–exampleNAME- Build only the specified example.
–testNAME- Build only the specified test target.
–benchNAME- Build only the specified benchmark target.
–release- Build artifacts in release mode, with optimizations.
–profilePROFILE- Profile to build the selected target for.
–featuresFEATURES- The version to yank or un-yank.
–all-features- Build all available features.
–no-default-features- Do not compile default features for the package.
–targetTRIPLE- Target triple which compiles will be for.
–manifest-pathPATH- Path to the manifest to fetch dependencies for.
-v, –verbose- Use verbose output.
-q, –quiet- No output printed to stdout.
–colorWHEN- Coloring: auto, always, never.
SEE ALSO
COPYRIGHT
This work is dual-licensed under Apache 2.0 and MIT terms. See COPYRIGHT file in the cargo source distribution.
