Allow building with Rust v1.84.0 or newer (#5371)

This commit is contained in:
Mathijs van Veluw
2025-01-09 12:33:02 +01:00
committed by GitHub
parent dec3a9603a
commit 10d12676cf
2 changed files with 7 additions and 1 deletions

View File

@@ -230,6 +230,10 @@ unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
variant_size_differences = "deny"
# Allow the following lints since these cause issues with Rust v1.84.0 or newer
# Building Vaultwarden with Rust v1.85.0 and edition 2024 also works without issues
if_let_rescope = "allow"
tail_expr_drop_order = "allow"
# https://rust-lang.github.io/rust-clippy/stable/index.html
[lints.clippy]