-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "hexagon_fuzz"
version = "0.1.0"
edition = "2021"
[profile.release]
incremental = true
debug = true
lto = "fat"
codegen-units = 1
overflow-checks = true
[dependencies]
libafl = { git = "https://github.com/AFLplusplus/LibAFL", rev = "2763d945a334ab08501a19b880286a6b2e595824" }
libafl_bolts = { git = "https://github.com/AFLplusplus/LibAFL", rev = "2763d945a334ab08501a19b880286a6b2e595824" }
libafl_qemu = { git = "https://github.com/AFLplusplus/LibAFL", rev = "2763d945a334ab08501a19b880286a6b2e595824", features = [
"hexagon",
"systemmode",
] }
env_logger = { version = "0.11.8" }
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.140", default-features = false }
log = { version = "0.4.27", default-features = false}