1. cargo-install-update-config(1)
  2. cargo-install-update-config(1)

NAME

cargo-install-update-config - Cargo subcommand for checking and applying updates to installed executables -- configuration

SYNOPSIS

cargo install-update-config OPTIONS PACKAGE

DESCRIPTION

Configure cargo/rustc compilation commandlines for packages.

Settable options:

If there is no configuration for a package, the $CARGO_DIR/.crates2.json file is parsed instead, which may yield, depending on the Cargo version, the following subset of the data:

See cargo-install-update(1) for general information.

OPTIONS

PACKAGE

Package to adjust settings for.

-t --toolchain [TOOLCHAIN]

Set the toolchain to use. Pass empty string to use the cargo default.

-f --feature [FEATURE]...

Enable a cargo feature.

-n --no-feature [FEATURE]...

Disable/remove a cargo feature.

-d --default-features [DEFAULT]

Enable or disable default features.

The argument can have the value "yes", "true", "1" to enable,
or "no", "false", "0" to disable.

--debug

Compile in debug mode.
Same as --build-profile dev.

--release

Compile in release mode (default).
Same as --build-profile release.

--build-profile [PROFILE]

Compile with PROFILE
(dev/release/test/bench or defined in $CARGO_DIR/.cargo/config.toml under [profile.PROFILE]).

--install-prereleases

Install version even if it's a prerelease.

--no-install-prereleases

Don't update to prerelease versions.

If the currently-installed version is a prerelease,
and the candidate version is a newer prerelease for the same major.minor.patch version,
it will be installed regardless of this setting.
(To wit: this setting controls updates to prereleases, not within them.)

--enforce-lock

Require Cargo.lock is up to date.

--no-enforce-lock

Don't require Cargo.lock to be up to date. (default).

--respect-binaries

Only install the binaries that are already installed for this package.

--no-respect-binaries

Install all binaries. (default).

-v --version [VERSION_REQ]

Require a cargo-compatible version range not to update beyond.

Example: ">1.3", "^0.1.8".

-a --any-version

Allow any version.

-e --environment [VARIABLE=VALUE]...

Set environment VARIABLE to VALUE in the cargo install process.

-E --clear-environment [VARIABLE]...

Remove environment VARIABLE from the cargo install process.

--inherit-environment [VARIABLE]...

Don't do anything to environment VARIABLE.

-r --reset

Roll back the configuration to the empty defaults.

-c --cargo-dir CARGO_DIR

Set the directory containing cargo metadata.

Required. Default: "$CARGO_HOME", then "$HOME/.cargo", otherwise manual.

EXAMPLES

cargo install-update-config -t nightly -d 0 -f log -f colour -v ~2.3 -e RUSTC_WRAPPER=sccache clippy

Set clippy to be compiled with the nightly toolchain without default
features, with log and colour features.

Example output:
  Toolchain              nightly
  Default features       true
  Features               log
                         colour
  Environment variables  RUSTC_WRAPPER=sccache

AUTHOR

Written by наб <nabijaczleweli@nabijaczleweli.xyz>, Yann Simon <yann.simon.fr@gmail.com>, ven <vendethiel@hotmail.fr>, Cat Plus Plus <piotrlegnica@piotrl.pl>, Liigo <liigo@qq.com>, azyobuzin <azyobuzin@users.sourceforge.jp>, Tatsuyuki Ishi <ishitatsuyuki@gmail.com>, Tom Prince <tom.prince@twistedmatrix.com>, Mateusz Mikuła <mati865@gmail.com>, sinkuu <sinkuupump@gmail.com>, Alex Burka <aburka@seas.upenn.edu>, Matthias Krüger <matthias.krueger@famsik.de>, Daniel Holbert <dholbert@cs.stanford.edu>, Jonas Bushart <jonas@bushart.org>, Harrison Metzger <harrisonmetz@gmail.com>, Benjamin Bannier <bbannier@gmail.com>, Dimitris Apostolou <dimitris.apostolou@icloud.com>, Corbin Uselton <corbinu@decimal.io>, QuarticCat <QuarticCat@protonmail.com>, Artur Sinila <freesoftware@logarithmus.dev>, qthree <qthree3@gmail.com>, tranzystorekk <tranzystorek.io@protonmail.com>, Paul Barker <paul@pbarker.dev>, Benoît CORTIER <bcortier@proton.me>, Biswapriyo Nath <nathbappai@gmail.com>, Shiraz <smcclennon@protonmail.com>, Victor Song <vms2@rice.edu>, chrisalcantara <chris@chrisalcantara.com>, Utkarsh Gupta <utkarshgupta137@gmail.com>, nevsal, Rui Chen <https://chenrui.dev>, and Lynnesbian <https://fedi.lynnesbian.space/@lynnesbian>

SPECIAL THANKS

To all who support further development, in particular:

REPORTING BUGS

<https://github.com/nabijaczleweli/cargo-update/issues>

SEE ALSO

<https://github.com/nabijaczleweli/cargo-update>

  1. cargo-update developers
  2. March 2025
  3. cargo-install-update-config(1)