62 lines
1.3 KiB
TOML
62 lines
1.3 KiB
TOML
[package]
|
|
name = "libafl_cc"
|
|
version.workspace = true
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "Commodity library to wrap compilers and link LibAFL"
|
|
documentation = "https://docs.rs/libafl_cc"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "testing", "compiler"]
|
|
edition = "2021"
|
|
rust-version = "1.78"
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = [
|
|
"ddg-instr",
|
|
"function-logging",
|
|
"cmplog-routines",
|
|
"autotokens",
|
|
"coverage-accounting",
|
|
"cmplog-instructions",
|
|
"ctx",
|
|
"dump-cfg",
|
|
"profiling",
|
|
]
|
|
|
|
# llvm passes
|
|
ddg-instr = []
|
|
function-logging = []
|
|
cmplog-routines = []
|
|
autotokens = []
|
|
coverage-accounting = []
|
|
cmplog-instructions = []
|
|
ctx = []
|
|
dump-cfg = []
|
|
profiling = []
|
|
|
|
[build-dependencies]
|
|
cc = { workspace = true, features = ["parallel"] }
|
|
which = { workspace = true }
|
|
|
|
[target.'cfg(target_vendor = "apple")'.build-dependencies]
|
|
glob = "0.3.1"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, default-features = false, features = [
|
|
"alloc",
|
|
"derive",
|
|
] } # serialization lib
|
|
|
|
[lints]
|
|
workspace = true
|