35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "libafl_qemu_sys"
|
|
version = "0.8.2"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "C to Rust bindings for the LibAFL QEMU bridge"
|
|
documentation = "https://docs.rs/libafl_qemu_sys"
|
|
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]
|
|
# The following architecture features are mutually exclusive.
|
|
x86_64 = [] # build qemu for x86_64 (default)
|
|
i386 = [] # build qemu for i386
|
|
arm = [] # build qemu for arm
|
|
aarch64 = [] # build qemu for aarch64
|
|
mips = [] # build qemu for mips (el, use with the 'be' feature of mips be)
|
|
|
|
be = []
|
|
|
|
usermode = []
|
|
systemmode = []
|
|
|
|
slirp = [ "systemmode", "libafl_qemu_build/slirp" ] # build qemu with host libslirp (for user networking)
|
|
|
|
clippy = [ "libafl_qemu_build/clippy" ] # special feature for clippy, don't use in normal projects§
|
|
|
|
[dependencies]
|
|
|
|
[build-dependencies]
|
|
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.8.2" }
|