-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "frida_fuzzer"
version = "0.1.0"
authors = ["saruman9 <rum.274.4@gmail.com>"]
edition = "2021"
[features]
default = ["std"]
std = []
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = true
[dependencies]
libafl = { git = "https://github.com/saruman9/LibAFL", features = [ "std", "llmp_compression", "llmp_bind_public", "frida_cli" ] } #, "llmp_small_maps", "llmp_debug"]}
frida-gum = { version = "0.8.1", features = [ "auto-download", "event-sink", "invocation-listener" ] }
libafl_frida = { git = "https://github.com/saruman9/LibAFL", features = [ "cmplog" ] }
libafl_targets = { git = "https://github.com/saruman9/LibAFL", features = [ "sancov_cmplog" ] }
libloading = "0.8.0"
mimalloc = { version = "0.1.37", default-features = false }
color-backtrace = "0.5.1"
pretty_env_logger = "0.5.0"