From 183cfef57b80842dc8b0eed9659afdbe7ec1ff2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 22:15:38 +0000 Subject: [PATCH 1/2] Update bindgen requirement from 0.69 to 0.70 Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version. - [Release notes](https://github.com/rust-lang/rust-bindgen/releases) - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.69.0...v0.70.0) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- compile/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 271c4acb7d565eb6c19b1ea8e788396d67efc568 Mon Sep 17 00:00:00 2001 From: Will Usher Date: Sat, 31 Aug 2024 16:00:47 -0600 Subject: [PATCH 2/2] Can't repro the build issue locally, try it? --- runtime/src/lib.rs | 1 + 1 file changed, 1 insertion(+) 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")); }; }