mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-06 20:45:00 +00:00
Allow building with Rust v1.84.0 or newer (#5371)
This commit is contained in:
parent
dec3a9603a
commit
10d12676cf
2 changed files with 7 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue