summaryrefslogtreecommitdiff
path: root/rust/binaryninjacore-sys
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-02-24 20:40:53 -0500
committerMason Reed <mason@vector35.com>2025-02-24 20:40:53 -0500
commit79513450cf65456289dbc202858ffd75bb9fac89 (patch)
treeaf6d1efc3183aaa3cbe9441b4238fc416894edf0 /rust/binaryninjacore-sys
parentc006a82f4ca1ebd3da3f94d9e69a2336e4fb0f4c (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.rs2
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"));