fix: Typo

Co-authored-by: Kaur Kuut <strom@nevermore.ee>
This commit is contained in:
Ed Page 2024-02-27 10:23:15 -06:00 committed by GitHub
parent 0de0ccd4d9
commit 08015f37d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1070,7 +1070,7 @@ Instead of adding `resolver = "3"`, we could keep the default resolver the same
This has no impact on the other proposals (`cargo add` picking compatible versions, `package.rust-version = "tbd-name-representing-currently-running-rust-toolchain"`, `cargo build` error to diagnostic).
Affects on workflows (including non-resolver behavior):
Effects on workflows (including non-resolver behavior):
1. Latest Rust with no MSRV
- ✅ `cargo new` setting `package.rust-version = "tbd-name-representing-currently-running-rust-toolchain"` moves most users to "Latest Rust as the MSRV" with no extra maintenance cost
- 🟰 ~~Dealing with incompatible dependencies will have a friendlier face because the hard build error after changing dependencies is changed to a notification during update suggesting they upgrade to get the new dependency because we fallback to `rustc --version` when `package.rust-version` is unset (as a side effect of us capturing `rust-toolchain.toml`)~~