diff --git a/bindings/pylibafl/.gitignore b/bindings/pylibafl/.gitignore new file mode 100644 index 0000000000..849ddff3b7 --- /dev/null +++ b/bindings/pylibafl/.gitignore @@ -0,0 +1 @@ +dist/ diff --git a/bindings/pylibafl/pyproject.toml b/bindings/pylibafl/pyproject.toml new file mode 100644 index 0000000000..cf9013dfba --- /dev/null +++ b/bindings/pylibafl/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["maturin>=0.14.10,<0.15"] +build-backend = "maturin" + +[project] +name = "PyLibAFL" +version = "0.10.0" +description = "Advanced Fuzzing Library for Python" +readme = "README.md" +requires-python = ">=3.8" +license = "MIT OR Apache-2.0" + +[project.urls] +repository = "https://github.com/AFLplusplus/LibAFL.git" + +[tool.maturin] +bindings = "pylibafl" +manifest-path = "Cargo.toml" +python-source = "python" +all-features = true diff --git a/bindings/pylibafl/rust-toolchain b/bindings/pylibafl/rust-toolchain deleted file mode 100644 index bf867e0ae5..0000000000 --- a/bindings/pylibafl/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -nightly