
Co-authored-by: Dominik Maier <domenukk@gmail.com> Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
37 lines
1008 B
TOML
37 lines
1008 B
TOML
[package]
|
|
name = "pylibafl"
|
|
description = "Python bindings for LibAFL"
|
|
version = "0.15.3"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
keywords = ["fuzzing", "testing", "security", "python"]
|
|
edition = "2024"
|
|
categories = ["development-tools::testing", "emulators", "embedded", "os"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.24.0", features = ["extension-module"] }
|
|
pyo3-log = { version = "0.12.2" }
|
|
libafl_sugar = { path = "../../libafl_sugar", version = "0.15.3", features = [
|
|
"python",
|
|
] }
|
|
libafl_bolts = { path = "../../libafl_bolts", version = "0.15.3", features = [
|
|
"python",
|
|
] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libafl_qemu = { path = "../../libafl_qemu", version = "0.15.3", features = [
|
|
"python",
|
|
] }
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = "0.24.0"
|
|
|
|
[lib]
|
|
name = "pylibafl"
|
|
crate-type = ["cdylib"]
|
|
|
|
# TODO: find a way to fix this when a solution is found
|
|
# https://github.com/rust-lang/cargo/issues/9330
|
|
# [profile.dev]
|
|
# panic = "abort"
|