Problem
Please, parse rust-version correctly. The current way (on both stable and nightly) is amusing:
❯ grep rust-version Cargo.toml
rust-version = "2.92.0"
❯ cargo +nightly check --ignore-rust-version
error: failed to parse manifest at `/share/pkehl/GIT/ndd/Cargo.toml`
Caused by:
rust-version 2.92.0 is older than first version (1.85.0) required by the specified edition (2024)
Applicable to local (path-based) dependencies or GIT-based dependencies, but regardless, the current parsing is incorrect.
Problem
Please, parse
rust-versioncorrectly. The current way (on bothstableandnightly) is amusing:Applicable to local (
path-based) dependencies or GIT-based dependencies, but regardless, the current parsing is incorrect.