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
After performing a cargo update, we explicitly set the version of clap to 4.4.18 because version 4.5.0 requires version 1.74 or higher version of rust toolchain. Updating the rust toolchain version has some breaking changes. You can do this using the following command: cargo update -p [email protected] --precise 4.4.18
See Cargo.lock
"[[package]]
name = "clap"
version = "4.4.18""
The rust toolchain version should be updated to 1.74 in a later PR.
One example of a breaking change in the newer rust version:
Description
After performing a cargo update, we explicitly set the version of clap to 4.4.18 because version 4.5.0 requires version 1.74 or higher version of rust toolchain. Updating the rust toolchain version has some breaking changes. You can do this using the following command:
cargo update -p [email protected] --precise 4.4.18
See Cargo.lock
The rust toolchain version should be updated to 1.74 in a later PR.
One example of a breaking change in the newer rust version:
Related issue:
Tracking Issue for
ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT
future-compat lint · Issue #115010 · rust-lang/rust (github.com)Acceptance criteria
The text was updated successfully, but these errors were encountered: