Open
Description
Problem
Hello,
Cargo simply ignores rust-toolchain.toml
overrides when used by --git
option to install a crate and also it can wrongly use the current directory rust-toolchain.toml
(even not related to the desired installing git repo) with or without --git
option.
Steps
The first issue: install any crate from a git repo with rust-toolchain.toml
in it, cargo ignores the overrides. For example:
cargo install --git=https://github.com/helix-editor/helix helix-term
The second issue: if you are in a rust repo directory that has rust-toolchain.toml
, trying to install another crate with or without --git
option, uses the current directory rust-toolchain.toml
overrides:
git clone https://github.com/nushell/nushell && cd nushell
cargo install --git=https://github.com/helix-editor/helix helix-term # still uses the nushell toolchain overrides
# or
cargo install du-dust # still uses the nushell toolchain overrides
Possible Solution(s)
No response
Notes
This also applies to rustup override
which is stored in a user config file.
Version
cargo 1.63.0 (fd9c4297c 2022-07-01)
release: 1.63.0
commit-hash: fd9c4297ccbee36d39e9a79067edab0b614edb5a
commit-date: 2022-07-01
host: x86_64-unknown-linux-gnu
libgit2: 1.4.2 (sys:0.14.2 vendored)
libcurl: 7.83.1-DEV (sys:0.4.55+curl-7.83.1 vendored ssl:OpenSSL/1.1.1n)
os: Ubuntu 20.04 (focal) [64-bit]
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Nominated