-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
Cargo.toml
45 lines (39 loc) · 1011 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "libfuzzer_libpng_launcher"
version = "0.14.1"
authors = [
"Andrea Fioraldi <[email protected]>",
"Dominik Maier <[email protected]>",
]
edition = "2021"
[features]
default = ["std"]
std = []
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = true
[build-dependencies]
cc = { version = "1.1.21", features = ["parallel"] }
which = "6.0.3"
[dependencies]
libafl = { path = "../../../libafl", features = [
"std",
"derive",
"llmp_compression",
"introspection",
] }
libafl_bolts = { path = "../../../libafl_bolts" }
libafl_targets = { path = "../../../libafl_targets", features = [
"sancov_pcguard_hitcounts",
"libfuzzer",
] }
# TODO Include it only when building cc
libafl_cc = { path = "../../../libafl_cc" }
clap = { version = "4.5.18", features = ["derive"] }
log = { version = "0.4.22", features = ["release_max_level_info"] }
mimalloc = { version = "0.1.43", default-features = false }
[lib]
name = "libfuzzer_libpng"
crate-type = ["staticlib"]