Skip to content

Commit

Permalink
rust: silence clippy warning introduced in rust 1.79
Browse files Browse the repository at this point in the history
  • Loading branch information
axxel committed Jul 18, 2024
1 parent 986f785 commit 386afba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions wrappers/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
*/
// SPDX-License-Identifier: Apache-2.0

#![allow(unknown_lints)] // backward compatibility
#![allow(unused_unsafe)]
#![allow(clippy::useless_transmute)]
#![allow(clippy::redundant_closure_call)]
#![allow(clippy::missing_transmute_annotations)] // introduced in 1.79

mod tests;

Expand Down

0 comments on commit 386afba

Please sign in to comment.