
* build and sys qemu crates * working libafl_qemu_build * libafl_qemu_sys * switch libafl_qemu to use libafl_qemu_sys * fix * use sys * fmt * mmu lookup * fix * autofix * clippy * fix * allow * cl * docker * docker * fix * mem access info in mem hooks * fmt * fix * kill libafl_page_size * fix * clippy * default bindings for docs.rs * macos * fix arm build * fix * plugins * fix * fix fuzzer * Correct PC on breakpoint Co-authored-by: Dominik Maier <domenukk@gmail.com>
25 lines
706 B
TOML
25 lines
706 B
TOML
[package]
|
|
name = "libafl_qemu_build"
|
|
version = "0.8.2"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "Builder for LibAFL QEMU"
|
|
documentation = "https://docs.rs/libafl_qemu_build"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "./README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "qemu", "instrumentation"]
|
|
edition = "2021"
|
|
categories = ["development-tools::testing", "emulators", "embedded", "os", "no-std"]
|
|
|
|
[features]
|
|
slirp = [] # build qemu with host libslirp (for user networking)
|
|
|
|
clippy = [] # special feature for clippy, don't use in normal projects§
|
|
|
|
[dependencies]
|
|
bindgen = "0.63"
|
|
cc = "1.0"
|
|
which = "4.2"
|
|
json = "0.12"
|
|
shell-words = "1.1"
|