-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
45 lines (39 loc) · 1.03 KB
/
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 = "afl_runner"
authors = ["0x434b <[email protected]"]
repository = "https://github.com/0xricksanchez/AFL_Runner"
description = "Scaling best-practice AFLPlusPlus fuzzing campaigns made easy"
version = "0.4.3"
edition = "2021"
keywords = ["afl", "fuzzing", "fuzz-testing", "testing", "fuzzer"]
license = "Apache-2.0"
[[bin]]
name = "aflr"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.90"
clap = { version = "4.5.20", features = ["wrap_help", "string", "derive"] }
rand = "0.8.5"
sysinfo = "0.32.0"
upon = "0.8.1"
toml = "0.8.19"
serde = { version = "1.0.210", features = ["derive"] }
ratatui = { version = "0.28.1", features = ["crossterm", "all-widgets"] }
crossterm = "0.28.1"
chrono = "0.4.38"
uuid = { version = "1.11.0", features = ["v4"] }
tempfile = "3"
[dev-dependencies]
cargo-make = "0.37.23"
[workspace]
members = ["examples"]
[workspace.metadata.make]
default = "demo"
working-directory = "examples"
[profile.release]
opt-level = 3
debug = false
lto = true
codegen-units = 1
panic = "abort"
overflow-checks = true