From da1166376dba396c6fb333d53b8ef5465e7f7553 Mon Sep 17 00:00:00 2001 From: "Eddy (Eduard) Stefes" Date: Thu, 4 Dec 2025 11:58:00 +0100 Subject: [PATCH] update gccjit_sys gccjit_sys 1.1.1 passes paths as *const u8. This breaks compilation on architectures where char is signed. 1.1.2 adds a cast to arch independent *const c_char. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 20d3014..3ab82ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ master = ["gccjit_sys/master"] dlopen = ["gccjit_sys/dlopen"] [dependencies] -gccjit_sys = { version = "1.1.1", path = "gccjit_sys" } +gccjit_sys = { version = "1.1.2", path = "gccjit_sys" } [package.metadata.docs.rs] features = ["master"]