From 79513450cf65456289dbc202858ffd75bb9fac89 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 24 Feb 2025 20:40:53 -0500 Subject: Fix clippy lints applying to `binaryninjacore-sys` This should _hopefully_ fix clippy checking the output of bindgen. --- rust/binaryninjacore-sys/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/binaryninjacore-sys/src') 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")); -- cgit v1.3.1