
* update clap, remove unused deps * update grammartek * update pyo3 * update pyo3 * undid clap update * not changing nyx * updated deps * Update more deps, fixes * not needed clippy * fix windows * try to enable deprecated pyproto for pyo3 * unused * moving some things to clap4 after all * initial move to clap 4 * fix clap * more clap4, removed accidental file * fixes, fmt * fix * all fix no play * fix
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "libafl_sugar"
|
|
version.workspace = true
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
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"
|
|
categories = ["development-tools::testing", "emulators", "embedded", "os", "no-std"]
|
|
|
|
[features]
|
|
python = ["pyo3", "libafl_qemu/python", "pyo3-build-config"]
|
|
default = []
|
|
|
|
# for libafl_qemu
|
|
# The following architecture features are mutually exclusive.
|
|
x86_64 = ["libafl_qemu/x86_64"] # build qemu for x86_64 (default)
|
|
i386 = ["libafl_qemu/i386"] # build qemu for i386
|
|
arm = ["libafl_qemu/arm"] # build qemu for arm
|
|
aarch64 = ["libafl_qemu/aarch64"] # build qemu for aarch64
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = { version = "0.15", optional = true }
|
|
|
|
[dependencies]
|
|
libafl = { path = "../libafl", version = "0.8.2" }
|
|
libafl_targets = { path = "../libafl_targets", version = "0.8.2" }
|
|
libafl_qemu = { path = "../libafl_qemu", version = "0.8.2" }
|
|
|
|
typed-builder = "0.10.0" # Implement the builder pattern at compiletime
|
|
#pyo3 = { version = "0.17", features = ["extension-module"], optional = true }
|
|
pyo3 = { version = "0.17", optional = true }
|
|
|
|
[lib]
|
|
name = "libafl_sugar"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|