mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-06 00:23:08 +02:00
Documentation: - https://github.com/rust-lang/rust-clippy?tab=readme-ov-file#specifying-the-minimum-supported-rust-version - https://doc.rust-lang.org/clippy/configuration.html#specifying-the-minimum-supported-rust-version - https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field - https://doc.rust-lang.org/cargo/reference/rust-version.html Setting "rust-version" in Cargo.toml might be redundant for Clippy, but it may serve well for Cargo itself. So, I set it in both places. Changes: - Update "msrv" in clippy.toml: 1.58.1 -> 1.86. - Explicitly set "rust-version" in Cargo.toml to "1.86".
6 lines
154 B
TOML
6 lines
154 B
TOML
# Disabled until we use at least Rust 1.49.0, which is the first
|
|
# version that supports the msrv field.
|
|
msrv = "1.86"
|
|
|
|
too-many-arguments-threshold = 10
|