Disable lint that interferes with rust beta CI compatibility (#16199)

# Objective

Fix our CI with rust beta

## Solution

Disable new lint

## Testing

Ran `cargo +nightly clippy`.
This commit is contained in:
Benjamin Brienen 2024-11-10 15:42:29 +01:00 committed by GitHub
parent 03991cd595
commit e155fe1d86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,6 +40,7 @@ semicolon_if_nothing_returned = "warn"
type_complexity = "allow" type_complexity = "allow"
undocumented_unsafe_blocks = "warn" undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn" unwrap_or_default = "warn"
needless_lifetimes = "allow"
ptr_as_ptr = "warn" ptr_as_ptr = "warn"
ptr_cast_constness = "warn" ptr_cast_constness = "warn"
@ -80,6 +81,7 @@ semicolon_if_nothing_returned = "warn"
type_complexity = "allow" type_complexity = "allow"
undocumented_unsafe_blocks = "warn" undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn" unwrap_or_default = "warn"
needless_lifetimes = "allow"
ptr_as_ptr = "warn" ptr_as_ptr = "warn"
ptr_cast_constness = "warn" ptr_cast_constness = "warn"