
* prep for publishing libafl_libfuzzer * learn to use linkers * document-features * special handling for fuzzbench builds * Update cmplog.c * drop dep for llvm-tools; add testcase for memcmp sanity --------- Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
name = "libafl_libfuzzer"
|
|
version.workspace = true
|
|
description = "libFuzzer shim which uses LibAFL with common defaults"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "testing", "security"]
|
|
edition = "2021"
|
|
categories = ["development-tools::testing", "fuzzing"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
rustversion = "1.0"
|
|
|
|
[features]
|
|
#! ## Feature Flags
|
|
|
|
## enables the derive macros for the arbitrary dependency, transparently forwarded from libfuzzer-sys
|
|
arbitrary-derive = ["libfuzzer-sys/arbitrary-derive"]
|
|
## enables fuzzer introspection with LibAFL's `introspection` feature
|
|
introspection = []
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = { version = "0.4.7", default-features = false }
|
|
|
|
document-features = { version = "0.2" }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["document-features"]
|
|
all-features = true
|
|
|
|
rustdoc-args = [
|
|
"--cfg", "docsrs",
|
|
]
|