
* Add libafl py module * Hardcoded baby_fuzzer * Trait abstraction: MapObserver Send type name as a param as it's needed for extracting the rust struct from the PyObject * Fix merge * Impl traits for python wrappers * Add PythonExecutor Not buildable version * Executor trait bindings * Monitor trait bindings * EventManager trait bindings * Fix warnings * Add corpus trait bindings * Use corpus trait bindings * Rand trait bindings * Remove python feature from default * Add cfg attribute * Fix fmt * No std box * Fix clippy * turn OwnedInProcessExecutor in a simple type alias * remove crate-type from libafl's Cargo.toml * Add python baby_fuzzer * Fix doc * Maturin doc * multiple map observer * fmt * build pylibafl with nightly * macro for map element type * Update py baby_fuzzer & fmt * Mutator bindings * fmt * merge conflicts * StdMutationalStage bindings Not working: Cannot pass mutator to new method because not clonable * Stage bindings * StagesOwnedList bindings Not working: Stage not clonable * Unsafe transmute copy fix * Use Stage bindings in baby_fuzzer * fmt * fmt * Fix doc * fix merge * Remove x86_64 feature from pylibafl Co-authored-by: Andrea Fioraldi <andreafioraldi@gmail.com>
22 lines
531 B
TOML
22 lines
531 B
TOML
[package]
|
|
name = "pylibafl"
|
|
version = "0.7.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.15", features = ["extension-module"] }
|
|
libafl_qemu = { path = "../../libafl_qemu", version = "0.7", features = ["python"] }
|
|
libafl_sugar = { path = "../../libafl_sugar", version = "0.7", features = ["python"] }
|
|
libafl = { path = "../../libafl", version = "0.7", features = ["python"] }
|
|
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.15" }
|
|
|
|
[lib]
|
|
name = "pylibafl"
|
|
crate-type = ["cdylib"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|