
* Add NyxCmpObserver to libafl_nyx * Add nyx_launcher example fuzzer * Cargo Format/Clippy * Adapt to naming scheme * Taplo fmt * Add hex decode function to remove hex dependency * Add nyx_launcher to CI * Remove UsesState --------- Co-authored-by: Dominik Maier <domenukk@gmail.com>
42 lines
954 B
TOML
42 lines
954 B
TOML
[package]
|
|
name = "nyx_launcher"
|
|
version = "0.14.1"
|
|
authors = ["Konstantin Bücheler <buecheko@protonmail.com>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
## Build with a simple event manager instead of Launcher - don't fork, and crash after the first bug.
|
|
simplemgr = []
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "8.2.1", features = [
|
|
"build",
|
|
"cargo",
|
|
"git",
|
|
"gitcl",
|
|
"rustc",
|
|
"si",
|
|
] }
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.18", features = ["derive", "string"] }
|
|
libafl = { path = "../../../libafl", features = ["tui_monitor"] }
|
|
libafl_bolts = { path = "../../../libafl_bolts", features = [
|
|
"errors_backtrace",
|
|
] }
|
|
libafl_nyx = { path = "../../../libafl_nyx/" }
|
|
log = { version = "0.4.20" }
|
|
nix = { version = "0.29.0", features = ["fs"] }
|
|
rangemap = { version = "1.5.1" }
|
|
readonly = { version = "0.2.12" }
|
|
typed-builder = { version = "0.20.0" }
|