
* 0.14.1 * fixer * don't build nyx --------- Co-authored-by: Dominik Maier <domenukk@gmail.com>
44 lines
1014 B
TOML
44 lines
1014 B
TOML
[package]
|
|
name = "frida_fuzzer"
|
|
version = "0.14.1"
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../../libafl", features = [
|
|
"std",
|
|
"llmp_compression",
|
|
"llmp_bind_public",
|
|
"frida_cli",
|
|
"errors_backtrace",
|
|
] } #, "llmp_small_maps", "llmp_debug"]}
|
|
libafl_bolts = { path = "../../../libafl_bolts" }
|
|
frida-gum = { version = "0.15.1", features = [
|
|
"auto-download",
|
|
"event-sink",
|
|
"invocation-listener",
|
|
"script",
|
|
] }
|
|
libafl_frida = { path = "../../../libafl_frida", features = ["cmplog"] }
|
|
libafl_targets = { path = "../../../libafl_targets", features = [
|
|
"sancov_cmplog",
|
|
] }
|
|
libloading = "0.8.5"
|
|
log = { version = "0.4.22", features = ["release_max_level_info"] }
|
|
mimalloc = { version = "0.1.43", default-features = false }
|
|
color-backtrace = "0.6.1"
|
|
env_logger = "0.11.5"
|