From 7b5b7d9ae4f5d4c660254088f5f7ca1a0a18f4d7 Mon Sep 17 00:00:00 2001 From: fourdim <59462000+fourdim@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:18:16 -0500 Subject: [PATCH] Fix the python binding configuration (#2937) --- bindings/pylibafl/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/pylibafl/pyproject.toml b/bindings/pylibafl/pyproject.toml index bd6ad1c12e..4aa42b5594 100644 --- a/bindings/pylibafl/pyproject.toml +++ b/bindings/pylibafl/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin[patchelf]>=0.14.10,<0.15"] +requires = ["maturin[patchelf]>=1.0,<2.0"] build-backend = "maturin" [project] @@ -20,7 +20,7 @@ classifiers = [ repository = "https://github.com/AFLplusplus/LibAFL.git" [tool.maturin] -bindings = "pylibafl" +bindings = "pyo3" manifest-path = "Cargo.toml" -python-source = "python" +python-source = "src" all-features = true