[package] name = "libafl_sugar" version = "0.7.0" authors = ["Andrea Fioraldi "] description = "Sugar builders to create common fuzzers with LibAFL" documentation = "https://docs.rs/libafl_sugar" repository = "https://github.com/AFLplusplus/LibAFL/" readme = "../README.md" license = "MIT OR Apache-2.0" keywords = ["fuzzing"] edition = "2021" build = "build.rs" [features] python = ["pyo3", "libafl_qemu/python", "pyo3-build-config"] default = [] [build-dependencies] pyo3-build-config = { version = "0.14.5", optional = true } [dependencies] libafl = { path = "../libafl", version = "0.7.0" } libafl_targets = { path = "../libafl_targets", version = "0.7.0" } libafl_qemu = { path = "../libafl_qemu", version = "0.7.0" } typed-builder = "0.9.0" # Implement the builder pattern at compiletime #pyo3 = { version = "0.15", features = ["extension-module"], optional = true } pyo3 = { version = "0.15", optional = true } [lib] name = "libafl_sugar" crate-type = ["cdylib", "rlib"]