diff --git a/compile/Cargo.toml b/compile/Cargo.toml index 91b560c9b..29fe1ba32 100644 --- a/compile/Cargo.toml +++ b/compile/Cargo.toml @@ -28,7 +28,7 @@ exclude = [ ] [dependencies] -bindgen = "0.69" +bindgen = "0.70" cc = "1" libc = "0.2" regex = "1.10" diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 23c1dc17a..0293c9b5e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -45,6 +45,7 @@ pub use crate::task::ISPCTaskFn; #[macro_export] macro_rules! ispc_module { ($lib:ident) => { + #[allow(clippy::all)] include!(concat!(env!("ISPC_OUT_DIR"), "/", stringify!($lib), ".rs")); }; }