docs: clarify --locked disallows changes in Cargo.lock

This commit is contained in:
Weihang Lo 2024-03-27 22:24:06 -04:00
parent e549bc809b
commit 26b2e74e55
No known key found for this signature in database
GPG Key ID: D7DBF189825E82E7
109 changed files with 806 additions and 412 deletions

View File

@ -640,7 +640,7 @@ See '<cyan,bold>cargo help</> <cyan><<command>></>' for more information on a sp
.value_parser(clap::builder::ValueParser::path_buf()), .value_parser(clap::builder::ValueParser::path_buf()),
) )
.arg( .arg(
flag("locked", "Require Cargo.lock to be up-to-date") flag("locked", "Assert that `Cargo.lock` will remain unchanged")
.help_heading(heading::MANIFEST_OPTIONS) .help_heading(heading::MANIFEST_OPTIONS)
.global(true), .global(true),
) )

View File

@ -172,13 +172,18 @@ OPTIONS
Add dependencies to only the specified package. Add dependencies to only the specified package.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -339,13 +339,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -273,13 +273,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -258,13 +258,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -92,13 +92,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -229,13 +229,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -72,13 +72,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -331,13 +331,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -47,13 +47,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -243,13 +243,18 @@ OPTIONS
Manifest Options Manifest Options
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -405,13 +405,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -159,13 +159,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -85,13 +85,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -129,13 +129,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -62,13 +62,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -177,13 +177,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -275,13 +275,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -245,13 +245,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -365,13 +365,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -212,13 +212,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -82,13 +82,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -54,13 +54,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -50,13 +50,18 @@ OPTIONS
Cargo.toml file in the current directory or any parent directory. Cargo.toml file in the current directory or any parent directory.
--locked --locked
Requires the Cargo.lock file be up-to-date. If the lock file is Asserts that the exact same dependencies and versions are used as
missing, or it needs to be updated due to changes in the Cargo.toml when the existing Cargo.lock file was originally generated. Cargo
file, for example a new dependency is added, Cargo will exit with an will exit with an error when either of the following scenarios
error. arises:
It may be used in environments where you want to assert that the o The lock file is missing.
Cargo.lock file is up-to-date (such as a CI build).
o Cargo attempted to change the lock file due to a different
dependency resolution.
It may be used in environments where deterministic builds are
desired, such as in CI pipelines.
--offline --offline
Prevents Cargo from accessing the network for any reason. Without Prevents Cargo from accessing the network for any reason. Without

View File

@ -1,10 +1,13 @@
{{#option "`--locked`"}} {{#option "`--locked`"}}
Requires the `Cargo.lock` file be up-to-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the `Cargo.toml` file, for example existing `Cargo.lock` file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
It may be used in environments where you want to assert that the `Cargo.lock` * The lock file is missing.
file is up-to-date (such as a CI build). * Cargo attempted to change the lock file due to a different dependency resolution.
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
{{/option}} {{/option}}
{{#option "`--offline`"}} {{#option "`--offline`"}}

View File

@ -192,11 +192,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-add---locked"><a class="option-anchor" href="#option-cargo-add---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-add---locked"><a class="option-anchor" href="#option-cargo-add---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-add---offline"><a class="option-anchor" href="#option-cargo-add---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-add---offline"><a class="option-anchor" href="#option-cargo-add---offline"></a><code>--offline</code></dt>

View File

@ -378,11 +378,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-bench---locked"><a class="option-anchor" href="#option-cargo-bench---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-bench---locked"><a class="option-anchor" href="#option-cargo-bench---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-bench---offline"><a class="option-anchor" href="#option-cargo-bench---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-bench---offline"><a class="option-anchor" href="#option-cargo-bench---offline"></a><code>--offline</code></dt>

View File

@ -309,11 +309,15 @@ See <a href="https://github.com/rust-lang/cargo/issues/5579">https://github.com/
<dt class="option-term" id="option-cargo-build---locked"><a class="option-anchor" href="#option-cargo-build---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-build---locked"><a class="option-anchor" href="#option-cargo-build---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-build---offline"><a class="option-anchor" href="#option-cargo-build---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-build---offline"><a class="option-anchor" href="#option-cargo-build---offline"></a><code>--offline</code></dt>

View File

@ -291,11 +291,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-check---locked"><a class="option-anchor" href="#option-cargo-check---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-check---locked"><a class="option-anchor" href="#option-cargo-check---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-check---offline"><a class="option-anchor" href="#option-cargo-check---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-check---offline"><a class="option-anchor" href="#option-cargo-check---offline"></a><code>--offline</code></dt>

View File

@ -111,11 +111,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-clean---locked"><a class="option-anchor" href="#option-cargo-clean---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-clean---locked"><a class="option-anchor" href="#option-cargo-clean---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-clean---offline"><a class="option-anchor" href="#option-cargo-clean---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-clean---offline"><a class="option-anchor" href="#option-cargo-clean---offline"></a><code>--offline</code></dt>

View File

@ -266,11 +266,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-doc---locked"><a class="option-anchor" href="#option-cargo-doc---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-doc---locked"><a class="option-anchor" href="#option-cargo-doc---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-doc---offline"><a class="option-anchor" href="#option-cargo-doc---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-doc---offline"><a class="option-anchor" href="#option-cargo-doc---offline"></a><code>--offline</code></dt>

View File

@ -80,11 +80,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-fetch---locked"><a class="option-anchor" href="#option-cargo-fetch---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-fetch---locked"><a class="option-anchor" href="#option-cargo-fetch---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-fetch---offline"><a class="option-anchor" href="#option-cargo-fetch---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-fetch---offline"><a class="option-anchor" href="#option-cargo-fetch---offline"></a><code>--offline</code></dt>

View File

@ -371,11 +371,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-fix---locked"><a class="option-anchor" href="#option-cargo-fix---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-fix---locked"><a class="option-anchor" href="#option-cargo-fix---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-fix---offline"><a class="option-anchor" href="#option-cargo-fix---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-fix---offline"><a class="option-anchor" href="#option-cargo-fix---offline"></a><code>--offline</code></dt>

View File

@ -59,11 +59,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-generate-lockfile---locked"><a class="option-anchor" href="#option-cargo-generate-lockfile---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-generate-lockfile---locked"><a class="option-anchor" href="#option-cargo-generate-lockfile---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-generate-lockfile---offline"><a class="option-anchor" href="#option-cargo-generate-lockfile---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-generate-lockfile---offline"><a class="option-anchor" href="#option-cargo-generate-lockfile---offline"></a><code>--offline</code></dt>

View File

@ -267,11 +267,15 @@ information about timing information.</li>
<dl> <dl>
<dt class="option-term" id="option-cargo-install---locked"><a class="option-anchor" href="#option-cargo-install---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-install---locked"><a class="option-anchor" href="#option-cargo-install---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-install---offline"><a class="option-anchor" href="#option-cargo-install---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-install---offline"><a class="option-anchor" href="#option-cargo-install---offline"></a><code>--offline</code></dt>

View File

@ -429,11 +429,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-metadata---locked"><a class="option-anchor" href="#option-cargo-metadata---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-metadata---locked"><a class="option-anchor" href="#option-cargo-metadata---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-metadata---offline"><a class="option-anchor" href="#option-cargo-metadata---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-metadata---offline"><a class="option-anchor" href="#option-cargo-metadata---offline"></a><code>--offline</code></dt>

View File

@ -183,11 +183,15 @@ be specified multiple times, which enables all specified features.</dd>
<dt class="option-term" id="option-cargo-package---locked"><a class="option-anchor" href="#option-cargo-package---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-package---locked"><a class="option-anchor" href="#option-cargo-package---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-package---offline"><a class="option-anchor" href="#option-cargo-package---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-package---offline"><a class="option-anchor" href="#option-cargo-package---offline"></a><code>--offline</code></dt>

View File

@ -91,11 +91,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-pkgid---locked"><a class="option-anchor" href="#option-cargo-pkgid---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-pkgid---locked"><a class="option-anchor" href="#option-cargo-pkgid---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-pkgid---offline"><a class="option-anchor" href="#option-cargo-pkgid---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-pkgid---offline"><a class="option-anchor" href="#option-cargo-pkgid---offline"></a><code>--offline</code></dt>

View File

@ -152,11 +152,15 @@ be specified multiple times, which enables all specified features.</dd>
<dt class="option-term" id="option-cargo-publish---locked"><a class="option-anchor" href="#option-cargo-publish---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-publish---locked"><a class="option-anchor" href="#option-cargo-publish---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-publish---offline"><a class="option-anchor" href="#option-cargo-publish---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-publish---offline"><a class="option-anchor" href="#option-cargo-publish---offline"></a><code>--offline</code></dt>

View File

@ -82,11 +82,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-remove---locked"><a class="option-anchor" href="#option-cargo-remove---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-remove---locked"><a class="option-anchor" href="#option-cargo-remove---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-remove---offline"><a class="option-anchor" href="#option-cargo-remove---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-remove---offline"><a class="option-anchor" href="#option-cargo-remove---offline"></a><code>--offline</code></dt>

View File

@ -211,11 +211,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-run---locked"><a class="option-anchor" href="#option-cargo-run---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-run---locked"><a class="option-anchor" href="#option-cargo-run---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-run---offline"><a class="option-anchor" href="#option-cargo-run---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-run---offline"><a class="option-anchor" href="#option-cargo-run---offline"></a><code>--offline</code></dt>

View File

@ -305,11 +305,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-rustc---locked"><a class="option-anchor" href="#option-cargo-rustc---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-rustc---locked"><a class="option-anchor" href="#option-cargo-rustc---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-rustc---offline"><a class="option-anchor" href="#option-cargo-rustc---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-rustc---offline"><a class="option-anchor" href="#option-cargo-rustc---offline"></a><code>--offline</code></dt>

View File

@ -286,11 +286,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-rustdoc---locked"><a class="option-anchor" href="#option-cargo-rustdoc---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-rustdoc---locked"><a class="option-anchor" href="#option-cargo-rustdoc---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-rustdoc---offline"><a class="option-anchor" href="#option-cargo-rustdoc---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-rustdoc---offline"><a class="option-anchor" href="#option-cargo-rustdoc---offline"></a><code>--offline</code></dt>

View File

@ -407,11 +407,15 @@ coming from rustc are still emitted. Cannot be used with <code>human</code> or <
<dt class="option-term" id="option-cargo-test---locked"><a class="option-anchor" href="#option-cargo-test---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-test---locked"><a class="option-anchor" href="#option-cargo-test---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-test---offline"><a class="option-anchor" href="#option-cargo-test---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-test---offline"><a class="option-anchor" href="#option-cargo-test---offline"></a><code>--offline</code></dt>

View File

@ -223,11 +223,15 @@ single quotes or double quotes around each pattern.</dd>
<dt class="option-term" id="option-cargo-tree---locked"><a class="option-anchor" href="#option-cargo-tree---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-tree---locked"><a class="option-anchor" href="#option-cargo-tree---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-tree---offline"><a class="option-anchor" href="#option-cargo-tree---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-tree---offline"><a class="option-anchor" href="#option-cargo-tree---offline"></a><code>--offline</code></dt>

View File

@ -100,11 +100,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-update---locked"><a class="option-anchor" href="#option-cargo-update---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-update---locked"><a class="option-anchor" href="#option-cargo-update---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-update---offline"><a class="option-anchor" href="#option-cargo-update---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-update---offline"><a class="option-anchor" href="#option-cargo-update---offline"></a><code>--offline</code></dt>

View File

@ -69,11 +69,15 @@ only a subset of the packages have changed.</dd>
<dt class="option-term" id="option-cargo-vendor---locked"><a class="option-anchor" href="#option-cargo-vendor---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-vendor---locked"><a class="option-anchor" href="#option-cargo-vendor---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-vendor---offline"><a class="option-anchor" href="#option-cargo-vendor---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-vendor---offline"><a class="option-anchor" href="#option-cargo-vendor---offline"></a><code>--offline</code></dt>

View File

@ -64,11 +64,15 @@ terminal.</li>
<dt class="option-term" id="option-cargo-verify-project---locked"><a class="option-anchor" href="#option-cargo-verify-project---locked"></a><code>--locked</code></dt> <dt class="option-term" id="option-cargo-verify-project---locked"><a class="option-anchor" href="#option-cargo-verify-project---locked"></a><code>--locked</code></dt>
<dd class="option-desc">Requires the <code>Cargo.lock</code> file be up-to-date. If the lock file is missing, <dd class="option-desc">Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the <code>Cargo.toml</code> file, for example existing <code>Cargo.lock</code> file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error.</p> error when either of the following scenarios arises:</p>
<p>It may be used in environments where you want to assert that the <code>Cargo.lock</code> <ul>
file is up-to-date (such as a CI build).</dd> <li>The lock file is missing.</li>
<li>Cargo attempted to change the lock file due to a different dependency resolution.</li>
</ul>
<p>It may be used in environments where deterministic builds are desired,
such as in CI pipelines.</dd>
<dt class="option-term" id="option-cargo-verify-project---offline"><a class="option-anchor" href="#option-cargo-verify-project---offline"></a><code>--offline</code></dt> <dt class="option-term" id="option-cargo-verify-project---offline"><a class="option-anchor" href="#option-cargo-verify-project---offline"></a><code>--offline</code></dt>

View File

@ -223,12 +223,20 @@ Add dependencies to only the specified package.
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -419,12 +419,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -337,12 +337,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -318,12 +318,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -117,12 +117,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -285,12 +285,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -85,12 +85,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -413,12 +413,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -64,12 +64,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -304,12 +304,20 @@ information about timing information.
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -438,12 +438,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -200,12 +200,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -123,12 +123,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -156,12 +156,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -83,12 +83,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -222,12 +222,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -336,12 +336,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -304,12 +304,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -446,12 +446,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -268,12 +268,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -107,12 +107,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -64,12 +64,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -74,12 +74,20 @@ Path to the \fBCargo.toml\fR file. By default, Cargo searches for the
.sp .sp
\fB\-\-locked\fR \fB\-\-locked\fR
.RS 4 .RS 4
Requires the \fBCargo.lock\fR file be up\-to\-date. If the lock file is missing, Asserts that the exact same dependencies and versions are used as when the
or it needs to be updated due to changes in the \fBCargo.toml\fR file, for example existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an
a new dependency is added, Cargo will exit with an error. error when either of the following scenarios arises:
.sp .sp
It may be used in environments where you want to assert that the \fBCargo.lock\fR .RS 4
file is up\-to\-date (such as a CI build). \h'-04'\(bu\h'+02'The lock file is missing.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+02'Cargo attempted to change the lock file due to a different dependency resolution.
.RE
.sp
It may be used in environments where deterministic builds are desired,
such as in CI pipelines.
.RE .RE
.sp .sp
\fB\-\-offline\fR \fB\-\-offline\fR

View File

@ -45,7 +45,7 @@
</tspan> </tspan>
<tspan x="10px" y="244px"><tspan> </tspan><tspan class="fg-cyan bold">-C</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;DIRECTORY&gt;</tspan><tspan> Change to DIRECTORY before doing anything (nightly-only)</tspan> <tspan x="10px" y="244px"><tspan> </tspan><tspan class="fg-cyan bold">-C</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;DIRECTORY&gt;</tspan><tspan> Change to DIRECTORY before doing anything (nightly-only)</tspan>
</tspan> </tspan>
<tspan x="10px" y="262px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="262px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -181,7 +181,7 @@
</tspan> </tspan>
<tspan x="10px" y="1468px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan> <tspan x="10px" y="1468px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan>
</tspan> </tspan>
<tspan x="10px" y="1486px"><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="1486px"><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="1504px"> <tspan x="10px" y="1504px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -127,7 +127,7 @@
</tspan> </tspan>
<tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="1018px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="1018px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -125,7 +125,7 @@
</tspan> </tspan>
<tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -121,7 +121,7 @@
</tspan> </tspan>
<tspan x="10px" y="928px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="928px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -69,7 +69,7 @@
</tspan> </tspan>
<tspan x="10px" y="460px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="460px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -51,7 +51,7 @@
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -115,7 +115,7 @@
</tspan> </tspan>
<tspan x="10px" y="874px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="874px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="892px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="892px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="910px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="910px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -53,7 +53,7 @@
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -129,7 +129,7 @@
</tspan> </tspan>
<tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="1018px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="1018px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="1036px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="1036px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -47,7 +47,7 @@
</tspan> </tspan>
<tspan x="10px" y="262px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="262px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -51,7 +51,7 @@
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -69,7 +69,7 @@
</tspan> </tspan>
<tspan x="10px" y="460px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="460px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -121,7 +121,7 @@
</tspan> </tspan>
<tspan x="10px" y="928px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="928px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -53,7 +53,7 @@
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -55,7 +55,7 @@
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="334px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="352px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="370px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="370px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -47,7 +47,7 @@
</tspan> </tspan>
<tspan x="10px" y="262px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="262px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="280px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -69,7 +69,7 @@
</tspan> </tspan>
<tspan x="10px" y="460px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="460px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -69,7 +69,7 @@
</tspan> </tspan>
<tspan x="10px" y="460px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="460px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -63,7 +63,7 @@
</tspan> </tspan>
<tspan x="10px" y="406px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="406px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="424px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="424px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="442px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="442px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -87,7 +87,7 @@
</tspan> </tspan>
<tspan x="10px" y="622px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="622px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="640px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="640px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="658px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="658px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -59,7 +59,7 @@
</tspan> </tspan>
<tspan x="10px" y="370px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="370px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="388px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="388px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="406px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="406px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -87,7 +87,7 @@
</tspan> </tspan>
<tspan x="10px" y="622px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="622px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="640px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="640px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="658px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="658px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -51,7 +51,7 @@
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="298px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -71,7 +71,7 @@
</tspan> </tspan>
<tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="478px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="496px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="514px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="514px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -51,7 +51,7 @@
</tspan> </tspan>
<tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan> <tspan x="10px" y="298px"><tspan class="fg-green bold">Manifest Options:</tspan>
</tspan> </tspan>
<tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="316px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -103,7 +103,7 @@
</tspan> </tspan>
<tspan x="10px" y="766px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="766px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="784px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="784px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="802px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="802px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -125,7 +125,7 @@
</tspan> </tspan>
<tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="1000px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -123,7 +123,7 @@
</tspan> </tspan>
<tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan> <tspan x="10px" y="946px"><tspan> </tspan><tspan class="fg-cyan bold">--manifest-path</tspan><tspan class="fg-cyan"> </tspan><tspan class="fg-cyan">&lt;PATH&gt;</tspan><tspan> Path to Cargo.toml</tspan>
</tspan> </tspan>
<tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Require Cargo.lock to be up-to-date</tspan> <tspan x="10px" y="964px"><tspan> </tspan><tspan class="fg-cyan bold">--locked</tspan><tspan> Assert that `Cargo.lock` will remain unchanged</tspan>
</tspan> </tspan>
<tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan> <tspan x="10px" y="982px"><tspan> </tspan><tspan class="fg-cyan bold">--offline</tspan><tspan> Run without accessing the network</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Some files were not shown because too many files have changed in this diff Show More