From cf37fba904098908aa3fd876b5c5ad4ce70999d8 Mon Sep 17 00:00:00 2001 From: Ashwin Naren Date: Sat, 10 May 2025 11:13:30 -0700 Subject: [PATCH] Bump libffi Also remove system feature from jit libffi, as that forces libffi to be installed on the system --- Cargo.toml | 2 +- jit/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fba5bc7849..c9e712570a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -169,7 +169,7 @@ itertools = "0.14.0" is-macro = "0.3.7" junction = "1.2.0" libc = "0.2.169" -libffi = "4.0" +libffi = "4.1" log = "0.4.27" nix = { version = "0.29", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] } malachite-bigint = "0.6" diff --git a/jit/Cargo.toml b/jit/Cargo.toml index bc21063192..5708ae367b 100644 --- a/jit/Cargo.toml +++ b/jit/Cargo.toml @@ -15,7 +15,7 @@ rustpython-compiler-core = { workspace = true } num-traits = { workspace = true } thiserror = { workspace = true } -libffi = { workspace = true, features = ["system"] } +libffi = { workspace = true } cranelift = "0.119" cranelift-jit = "0.119"