You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks to see if the rust-version field is defined in Cargo.toml.
Advantage
The MSRV-aware resolver takes this field into account when picking dependencies if it is defined. If this field is defined, the toil is reduced for maintainers to support older toolchains by not needing to manually select older versions for each dependency.
Drawbacks
The MSRV-aware resolver has been stabilized since Rust 1.84.0.
Example
[package]
# ...
Could be written as:
[package]
# ...rust-version = "1.56"
The text was updated successfully, but these errors were encountered:
What it does
Checks to see if the
rust-version
field is defined inCargo.toml
.Advantage
The MSRV-aware resolver takes this field into account when picking dependencies if it is defined. If this field is defined, the toil is reduced for maintainers to support older toolchains by not needing to manually select older versions for each dependency.
Drawbacks
The MSRV-aware resolver has been stabilized since Rust 1.84.0.
Example
Could be written as:
The text was updated successfully, but these errors were encountered: