]> git.proxmox.com Git - cargo.git/commitdiff
Add some help about rustup's +toolchain syntax.
authorEric Huss <eric@huss.org>
Sat, 4 Jul 2020 22:03:54 +0000 (15:03 -0700)
committerEric Huss <eric@huss.org>
Mon, 6 Jul 2020 14:02:12 +0000 (07:02 -0700)
64 files changed:
src/bin/cargo/cli.rs
src/doc/man/generated/cargo-bench.html
src/doc/man/generated/cargo-build.html
src/doc/man/generated/cargo-check.html
src/doc/man/generated/cargo-clean.html
src/doc/man/generated/cargo-doc.html
src/doc/man/generated/cargo-fetch.html
src/doc/man/generated/cargo-fix.html
src/doc/man/generated/cargo-generate-lockfile.html
src/doc/man/generated/cargo-init.html
src/doc/man/generated/cargo-install.html
src/doc/man/generated/cargo-locate-project.html
src/doc/man/generated/cargo-login.html
src/doc/man/generated/cargo-metadata.html
src/doc/man/generated/cargo-new.html
src/doc/man/generated/cargo-owner.html
src/doc/man/generated/cargo-package.html
src/doc/man/generated/cargo-pkgid.html
src/doc/man/generated/cargo-publish.html
src/doc/man/generated/cargo-run.html
src/doc/man/generated/cargo-rustc.html
src/doc/man/generated/cargo-rustdoc.html
src/doc/man/generated/cargo-search.html
src/doc/man/generated/cargo-test.html
src/doc/man/generated/cargo-tree.html
src/doc/man/generated/cargo-uninstall.html
src/doc/man/generated/cargo-update.html
src/doc/man/generated/cargo-vendor.html
src/doc/man/generated/cargo-verify-project.html
src/doc/man/generated/cargo-yank.html
src/doc/man/generated/cargo.html
src/doc/man/options-common.adoc
src/etc/man/cargo-bench.1
src/etc/man/cargo-build.1
src/etc/man/cargo-check.1
src/etc/man/cargo-clean.1
src/etc/man/cargo-doc.1
src/etc/man/cargo-fetch.1
src/etc/man/cargo-fix.1
src/etc/man/cargo-generate-lockfile.1
src/etc/man/cargo-help.1
src/etc/man/cargo-init.1
src/etc/man/cargo-install.1
src/etc/man/cargo-locate-project.1
src/etc/man/cargo-login.1
src/etc/man/cargo-metadata.1
src/etc/man/cargo-new.1
src/etc/man/cargo-owner.1
src/etc/man/cargo-package.1
src/etc/man/cargo-pkgid.1
src/etc/man/cargo-publish.1
src/etc/man/cargo-run.1
src/etc/man/cargo-rustc.1
src/etc/man/cargo-rustdoc.1
src/etc/man/cargo-search.1
src/etc/man/cargo-test.1
src/etc/man/cargo-tree.1
src/etc/man/cargo-uninstall.1
src/etc/man/cargo-update.1
src/etc/man/cargo-vendor.1
src/etc/man/cargo-verify-project.1
src/etc/man/cargo-version.1
src/etc/man/cargo-yank.1
src/etc/man/cargo.1

index a6f8b1cbd8a8000986e72664472322ebe8a81b58..0bd98340d068f4f1827d5c5b5cb341aaca05bd52 100644 (file)
@@ -256,6 +256,12 @@ impl GlobalArgs {
 }
 
 fn cli() -> App {
+    let is_rustup = std::env::var_os("RUSTUP_HOME").is_some();
+    let usage = if is_rustup {
+        "cargo [+toolchain] [OPTIONS] [SUBCOMMAND]"
+    } else {
+        "cargo [OPTIONS] [SUBCOMMAND]"
+    };
     App::new("cargo")
         .settings(&[
             AppSettings::UnifiedHelpMessage,
@@ -263,6 +269,7 @@ fn cli() -> App {
             AppSettings::VersionlessSubcommands,
             AppSettings::AllowExternalSubcommands,
         ])
+        .usage(usage)
         .template(
             "\
 Rust's package manager
index d97adce558f12a195e7b42975584f0d36ad94671..3085d4be2efc743b2c30eeffef1191f75cd5b12a 100644 (file)
@@ -419,6 +419,14 @@ offline.</p>
 <h3 id="cargo_bench_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 5d32503a1bb1e95b4d874a1da8baf9eff5c92136..718dfd9974069d62bd5a9cc1a84c1c09e305b9f1 100644 (file)
@@ -350,6 +350,14 @@ offline.</p>
 <h3 id="cargo_build_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 357f7499699ac867f012454c71a2a177441e9c09..e151265dc0516a915183e9b3b847071b5b9842bf 100644 (file)
@@ -341,6 +341,14 @@ offline.</p>
 <h3 id="cargo_check_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index f0d51b48be7592f4eebe37d45cc20d66b93e5505..dbc1e4a367aee1b86efdf2bc45e8639a36210bdc 100644 (file)
@@ -170,6 +170,14 @@ offline.</p>
 <h3 id="cargo_clean_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 7d5688ea21ea9f3d517718a189ab9b59caeef0c1..33b6d6482ea2c8bec2a06d1741ac9d177f380d68 100644 (file)
@@ -311,6 +311,14 @@ offline.</p>
 <h3 id="cargo_doc_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 64c1e05efc7fe76b8bae269f3831785d37b55822..d37eebd1c40cb13822eea5890b18b65dc8c696f4 100644 (file)
@@ -147,6 +147,14 @@ offline.</p>
 <h3 id="cargo_fetch_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 1f32ce8e6bdc52f4f43385080068d11fe331e5f5..20d9bcc9d77ddc8da4fe0a9e22f6614bc89bd260 100644 (file)
@@ -417,6 +417,14 @@ offline.</p>
 <h3 id="cargo_fix_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index cc076e5395720c3df8149fbf1955af6d75d93476..467945a0aec5025d08760e3096ae2ab0db00918c 100644 (file)
@@ -115,6 +115,14 @@ offline.</p>
 <h3 id="cargo_generate_lockfile_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 3af33f636773b4c359de407b4ef8537f616aec50..593596d34d7081e4165d5fcd3363946f924dfa61 100644 (file)
@@ -187,6 +187,14 @@ terminal.</p>
 <h3 id="cargo_init_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 8f143f04690ee4fd0cadaaa72a06454424a779b6..7093fa3e18b42da49daabdc5bb77f39b4450db55 100644 (file)
@@ -369,6 +369,14 @@ terminal.</p>
 <h3 id="cargo_install_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index c037f2d7221f7f8d9ed49533073c05c84eae58b7..25f83cc91f6165f4789eb6291a690db792c4c2f4 100644 (file)
@@ -84,6 +84,14 @@ terminal.</p>
 <h3 id="cargo_locate_project_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 6c8f9b9c7ca64f317228a5cfda4140fd19f15ca2..7037f025de882a94057b74348b6bc7e18c20e994 100644 (file)
@@ -92,6 +92,14 @@ terminal.</p>
 <h3 id="cargo_login_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index f7683e675f1ee906dd52ef174a07672686e712fc..6c99490f2a04787db22f1a1b3690984c3125a36c 100644 (file)
@@ -441,6 +441,14 @@ offline.</p>
 <h3 id="cargo_metadata_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 87e7708479c613c655f51badc427ebfd0c6ffa34..4ea179f94633a3e0a8aa433d0519f106d464ddb8 100644 (file)
@@ -180,6 +180,14 @@ terminal.</p>
 <h3 id="cargo_new_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 80647ad62dba261f8265754f5bda5d4e302d91c2..c7fb23f7163242a1644bfed21420a4ae9148eac8 100644 (file)
@@ -128,6 +128,14 @@ terminal.</p>
 <h3 id="cargo_owner_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 5b2aeae93c7d5ce8b48daf3b568cbde366a8ad14..091b6e360062a71a7ba009b2464080b1cd333f9f 100644 (file)
@@ -278,6 +278,14 @@ terminal.</p>
 <h3 id="cargo_package_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index d70b9858be14838e0c0add472d4e722fae11043e..b1ab862d86ae80f99fe7a86e340639a348b75847 100644 (file)
@@ -174,6 +174,14 @@ offline.</p>
 <h3 id="cargo_pkgid_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 2a9020bac68c7c64a17682868a8e8334de6279c5..04715c65106de85f95cf9e6f386c8bf5f29a3b06 100644 (file)
@@ -262,6 +262,14 @@ terminal.</p>
 <h3 id="cargo_publish_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index cddf84c4e26018eeef8316ac038cf73d05abd607..c2cc8a61a66803b07de34a970b681641592587b1 100644 (file)
@@ -263,6 +263,14 @@ offline.</p>
 <h3 id="cargo_run_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 53b116f1822035fcbcdf4df205eab87808def3a4..5957b518ea8dddc6333cfa5d5cee6255d133e452 100644 (file)
@@ -324,6 +324,14 @@ offline.</p>
 <h3 id="cargo_rustc_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 88c9c7d54eb4b7b016cf140eb76e1848d8df1e97..c4673dda7703fc219ddb068449303c13a94a8a64 100644 (file)
@@ -339,6 +339,14 @@ offline.</p>
 <h3 id="cargo_rustdoc_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index b2ec506a9fb3327b2e305cfd27e516cf50a99947..9f33fa2254669d936dc68f32e607eccb1e2612f1 100644 (file)
@@ -90,6 +90,14 @@ terminal.</p>
 <h3 id="cargo_search_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 3119d383f052bcbdbbf7234f03cdb55219585d70..aefe8d37ff0dc41d1524aa44fe93269b4f6a148b 100644 (file)
@@ -439,6 +439,14 @@ offline.</p>
 <h3 id="cargo_test_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 8b822936a7a0f3cee402333f50c804f09bd92304..a9bee7b3015e4097a1f884d4380f96602501436d 100644 (file)
@@ -335,6 +335,14 @@ terminal.</p>
 <h3 id="cargo_tree_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index ef24a2edc567954fa8642b396e95d805d993070d..1ebfba2490f80e72c07c8a5136f6fe1360739d5d 100644 (file)
@@ -115,6 +115,14 @@ terminal.</p>
 <h3 id="cargo_uninstall_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 7605699566b5968671cb16b1324af2218c8871ff..9cd2a3b560ade25393094b0385b90849dbd49cea 100644 (file)
@@ -149,6 +149,14 @@ offline.</p>
 <h3 id="cargo_update_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index 8bb29636480bfa029c8a5f73033945694510cb36..9e4a062e9e7ff81219e8ce18aa0eff48a5746ddf 100644 (file)
@@ -118,6 +118,14 @@ terminal.</p>
 <h3 id="cargo_vendor_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index f17141c3efb26d9578d8b80798c9f19995f14fe4..8eabe22cead99c6d9f670edf996393c7118680fa 100644 (file)
@@ -123,6 +123,14 @@ offline.</p>
 <h3 id="cargo_verify_project_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index ebb6fd83d4a76cae0816bde03c35b483bb2f8200..5a899f9e187a8dc01bc458a78d129ab4bb623322 100644 (file)
@@ -120,6 +120,14 @@ terminal.</p>
 <h3 id="cargo_yank_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index fc74ab7bfe074f052a5cdd6dbba784f527ce3e96..3c13db331aafc20b2320aeb48b07b4cbb41c7235 100644 (file)
@@ -297,6 +297,14 @@ offline.</p>
 <h3 id="_common_options">Common Options</h3>
 <div class="dlist">
 <dl>
+<dt class="hdlist1"><strong>+TOOLCHAIN</strong></dt>
+<dd>
+<p>If Cargo has been installed with rustup, and the first argument to <code>cargo</code>
+begins with <code>+</code>, it will be interpreted as a rustup toolchain name (such
+as <code>+stable</code> or <code>+nightly</code>).
+See the <a href="https://github.com/rust-lang/rustup/">rustup documentation</a>
+for more information about how toolchain overrides work.</p>
+</dd>
 <dt class="hdlist1"><strong>-h</strong></dt>
 <dt class="hdlist1"><strong>--help</strong></dt>
 <dd>
index b8c2fce380cc449520424135f444d2ede1745db8..aa0e24f522f76ac57f7af6e3ceaae7c03da926d0 100644 (file)
@@ -1,3 +1,10 @@
+*+TOOLCHAIN*::
+    If Cargo has been installed with rustup, and the first argument to `cargo`
+    begins with `+`, it will be interpreted as a rustup toolchain name (such
+    as `+stable` or `+nightly`).
+    See the link:https://github.com/rust-lang/rustup/[rustup documentation]
+    for more information about how toolchain overrides work.
+
 *-h*::
 *--help*::
     Prints help information.
index 442f164d89371de02e34574a83aa099ed9b37c47..b17bb536dc98148ef5eae0cc08c983310c688af1 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-bench
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-05-08
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-BENCH" "1" "2020-05-08" "\ \&" "\ \&"
+.TH "CARGO\-BENCH" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -500,6 +500,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index d24913a5faec5887f10fa5d5575c4d8bc1232d06..6c331075f805a46e19e7b15e419e7a7d878a4431 100644 (file)
@@ -407,6 +407,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index c09f0c557ef7ca72d411a3caa98c77b64723ad70..d31221204e01dd75372aadd449d8658bf61e4d40 100644 (file)
@@ -393,6 +393,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 7ad930ab1c7ff8a6bb4631bce766470f2f457a95..084866f76244c9987aed111a7fa7f35060f8a1e5 100644 (file)
@@ -182,6 +182,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 553d32c56a0404093cfd7e175c12b7bce5807a7b..136e689b08b7839740ec6c3b608a71c35e0a44d8 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-doc
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-06
+.\"      Date: 2020-04-21
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-DOC" "1" "2020-02-06" "\ \&" "\ \&"
+.TH "CARGO\-DOC" "1" "2020-04-21" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -352,6 +352,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 1442fa02eb6a410a825cfa621fbc184e88ae9785..0a4225de40e8cbe79602a7b2d453eebd044aa940 100644 (file)
@@ -160,6 +160,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 8f3087cc3b202f77baf2e392560f5652002e77ba..9a29b4a00484895b9a88facf510bd6f05038c2ad 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-fix
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-06
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-FIX" "1" "2020-02-06" "\ \&" "\ \&"
+.TH "CARGO\-FIX" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -467,6 +467,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 1c890c2bbbbf353a4ceec8a14229d9fcf30b2ddb..23bb1110b73564e0cd252da8642ab23409a8aa63 100644 (file)
@@ -135,6 +135,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index a69e814840faf8fd5c1853a45d75c1a13f44f740..bcff591d5318f9cf30f2b699cf9aa4111edd5ce9 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-help
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-HELP" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-HELP" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
index 71137889fb7a5e66261aad778cdf5bb510ee148e..f1189c74c5f96f9ca731df37ce22617cf3b4b16b 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-init
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-INIT" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-INIT" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -314,6 +314,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 74751ec32e5aae55488a8345ebe1d19ac412e429..7501ddef2f526d2c556aa0970517ea8966c271f2 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-install
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-06-20
+.\"      Date: 2020-07-01
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-INSTALL" "1" "2020-06-20" "\ \&" "\ \&"
+.TH "CARGO\-INSTALL" "1" "2020-07-01" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -457,6 +457,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 7868e618ec6c053071a2ac4fa3119a1789953681..4a73aed7c35f8c16d14ff9af492d99221c5a469e 100644 (file)
@@ -105,6 +105,16 @@ Path to the \fBCargo.toml\fP file. By default, Cargo searches for the
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 9b3a9f9adba3aee1c0ef7723ec64b46036a1546d..1ac847fb566e04b7babc4e41c138b8ad3bf07f4c 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-login
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-04-16
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-LOGIN" "1" "2020-04-16" "\ \&" "\ \&"
+.TH "CARGO\-LOGIN" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -113,6 +113,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index a094448d0e5b6ead5db311771bbcbbfbd6d80c36..52ad5808f060ffb158058f52017abb93bb7cd843 100644 (file)
@@ -448,6 +448,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
@@ -495,4 +505,4 @@ cargo metadata \-\-format\-version=1
 .RE
 .SH "SEE ALSO"
 .sp
-\fBcargo\fP(1)
\ No newline at end of file
+\fBcargo\fP(1)
index a168878248d6a92e6f5d898e40da00db1fa4cf49..68eb8750d6f77f54d500439333b81fde4feccbd4 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-new
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-NEW" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-NEW" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -309,6 +309,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index efd54e398969893f18e3309fa47c696872d2e1dd..8df4f1d8c3a5e59a6e74f7c49d0767776f460056 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-owner
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-OWNER" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-OWNER" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -154,6 +154,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index d150cb55bb2b1ac9c068b6d84f8547dfd727d8df..0a80a18203e52e45feaf4dace981ef9f7274634b 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-package
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-06
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-PACKAGE" "1" "2020-02-06" "\ \&" "\ \&"
+.TH "CARGO\-PACKAGE" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -348,6 +348,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 4a3e50f07778f45788dfdb3163136ea52311817b..80b5fbbe15d4b40450938bddbbc2d89f0e63e36e 100644 (file)
@@ -212,6 +212,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 251d5a9e96616c58def647ed203624468d37c48e..716127628cbaa3fded3cc3ba0e0197c797f3884f 100644 (file)
@@ -298,6 +298,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 92a6fa2ec79d7edd5c0e1d582dc2b88a63c035e5..16c1da54a04307b31d2e5e9debb1a8702423a4fc 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-run
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-11-11
+.\"      Date: 2020-04-21
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-RUN" "1" "2019-11-11" "\ \&" "\ \&"
+.TH "CARGO\-RUN" "1" "2020-04-21" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -304,6 +304,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 0ce75457a3cabd1aa0b8c38e52a00f0223aac317..a8b6f14eaeb6a79ce5893847b8a35517a36f6cd7 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-rustc
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-06
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-RUSTC" "1" "2020-02-06" "\ \&" "\ \&"
+.TH "CARGO\-RUSTC" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -375,6 +375,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 0660489accc6a5ba7b47f57720101815b90cd83e..88271e1462a880e93b1cfa363cc4115164ca6b35 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-rustdoc
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-06
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-RUSTDOC" "1" "2020-02-06" "\ \&" "\ \&"
+.TH "CARGO\-RUSTDOC" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -385,6 +385,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index c9233288cc1a40f8bd036ea5343034839e5174dd..3999d4b0ff0dddf5261a6e4f9d489b12871a4a13 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-search
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-SEARCH" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-SEARCH" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -117,6 +117,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 58950822addadee5d5cbab08af9545b8814e5eb7..0f967958fc7e058cb1176bdbda8cd8d92326847f 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-test
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-02-19
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-TEST" "1" "2020-02-19" "\ \&" "\ \&"
+.TH "CARGO\-TEST" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -536,6 +536,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 24031b3e29ee71156802f75f2e20b7abee0b0d99..70179add29d326045134ee207f3e6ef144fdcc7c 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-tree
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-04-03
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-TREE" "1" "2020-04-03" "\ \&" "\ \&"
+.TH "CARGO\-TREE" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -440,6 +440,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 0c1ebe202f0d7578c9e3e65379416c6856fbab34..d78a5a53a360b88422124a3c370f4900530983e2 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-uninstall
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-UNINSTALL" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-UNINSTALL" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -173,6 +173,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 91595807ff4d4f3c9f6879d2b8c4c8230a6c4eb6..2b321002ed4fac9ae3f9dac514edf219cd21e11c 100644 (file)
@@ -165,6 +165,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 87a9b6df1ab8b99b662e9618d74b6b3e296ce951..f94be7ce0a5dc277fc8b6f3989a25392738b5036 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-vendor
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-04-16
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-VENDOR" "1" "2020-04-16" "\ \&" "\ \&"
+.TH "CARGO\-VENDOR" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -136,6 +136,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index d2f05cbfdfc467eff99c7f091d74f831198d6554..00355dad25e5eddd4851f6aa5d1190279176139b 100644 (file)
@@ -145,6 +145,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index bf61c2bd36910bcf9c51b3455e1a6aef8cdc6bc5..73946405f455db6787b8e82ff8c2ec977527fe09 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-version
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2019-06-03
+.\"      Date: 2019-09-05
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-VERSION" "1" "2019-06-03" "\ \&" "\ \&"
+.TH "CARGO\-VERSION" "1" "2019-09-05" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
index ff902464d31782530e002fdba84a7b3fcd63b07c..e6250e976b51301606d2e4fb5fcd4ccdbb7bf811 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo-yank
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-03-30
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO\-YANK" "1" "2020-03-30" "\ \&" "\ \&"
+.TH "CARGO\-YANK" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -144,6 +144,16 @@ May also be specified with the \fBterm.color\fP
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.
index 7b69056ed0ad0b94750e5d8804e7afe8a4b2c407..aec7e552a2226f3e2ccb244bdbe356be744e9150 100644 (file)
@@ -2,12 +2,12 @@
 .\"     Title: cargo
 .\"    Author: [see the "AUTHOR(S)" section]
 .\" Generator: Asciidoctor 2.0.10
-.\"      Date: 2020-04-16
+.\"      Date: 2020-06-25
 .\"    Manual: \ \&
 .\"    Source: \ \&
 .\"  Language: English
 .\"
-.TH "CARGO" "1" "2020-04-16" "\ \&" "\ \&"
+.TH "CARGO" "1" "2020-06-25" "\ \&" "\ \&"
 .ie \n(.g .ds Aq \(aq
 .el       .ds Aq '
 .ss \n[.ss] 0
@@ -315,6 +315,16 @@ May also be specified with the \fBnet.offline\fP \c
 .RE
 .SS "Common Options"
 .sp
+\fB+TOOLCHAIN\fP
+.RS 4
+If Cargo has been installed with rustup, and the first argument to \fBcargo\fP
+begins with \fB+\fP, it will be interpreted as a rustup toolchain name (such
+as \fB+stable\fP or \fB+nightly\fP).
+See the \c
+.URL "https://github.com/rust\-lang/rustup/" "rustup documentation"
+for more information about how toolchain overrides work.
+.RE
+.sp
 \fB\-h\fP, \fB\-\-help\fP
 .RS 4
 Prints help information.