diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-24 20:40:53 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-02-24 20:40:53 -0500 |
| commit | 79513450cf65456289dbc202858ffd75bb9fac89 (patch) | |
| tree | af6d1efc3183aaa3cbe9441b4238fc416894edf0 /rust/binaryninjacore-sys | |
| parent | c006a82f4ca1ebd3da3f94d9e69a2336e4fb0f4c (diff) | |
Fix clippy lints applying to `binaryninjacore-sys`
This should _hopefully_ fix clippy checking the output of bindgen.
Diffstat (limited to 'rust/binaryninjacore-sys')
| -rw-r--r-- | rust/binaryninjacore-sys/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/binaryninjacore-sys/src/lib.rs b/rust/binaryninjacore-sys/src/lib.rs index f7e7225a..6ebe2971 100644 --- a/rust/binaryninjacore-sys/src/lib.rs +++ b/rust/binaryninjacore-sys/src/lib.rs @@ -2,7 +2,7 @@ #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(unused)] -#![allow(clippy::type_complexity)] +#![allow(clippy::all)] #![doc(html_root_url = "https://dev-rust.binary.ninja/")] include!(concat!(env!("OUT_DIR"), "/bindings.rs")); |
