mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 04:58:57 +00:00
Configure cargo to respect MSRV
The new 1.84 release has a new feature that makes `cargo update` MSRV-aware. This is what it looks like in practice: Updating crates.io index Updating git repository `https://github.com/fish-shell/rust-pcre2` From https://github.com/fish-shell/rust-pcre2 * [new tag] 0.2.9-utf32 -> origin/tags/0.2.9-utf32 Locking 7 packages to latest Rust 1.70 compatible versions Updating cc v1.2.6 -> v1.2.7 Updating phf v0.11.2 -> v0.11.3 Updating phf_codegen v0.11.2 -> v0.11.3 Updating phf_generator v0.11.2 -> v0.11.3 Updating phf_shared v0.11.2 -> v0.11.3 Updating siphasher v0.3.11 -> v1.0.1 Updating syn v2.0.94 -> v2.0.95
This commit is contained in:
parent
b8208d72f7
commit
b9c6806e45
1 changed files with 3 additions and 0 deletions
3
.cargo/config.toml
Normal file
3
.cargo/config.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[resolver]
|
||||
# Make cargo 1.84+ respect MSRV (rust-version in Cargo.toml)
|
||||
incompatible-rust-versions = "fallback"
|
Loading…
Reference in a new issue