-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.53 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
46
47
48
49
50
51
52
[package]
name = "qemu_snapshot"
version = "0.14.1"
authors = [
"Andrea Fioraldi <[email protected]>",
"Dominik Maier <[email protected]>",
"Alessandro De Vito <[email protected]>",
]
edition = "2021"
[features]
default = ["std"]
std = []
clippy = [] # Only for clippy, don't use.
## Build with a simple event manager instead of Launcher - don't fork, and crash after the first bug.
simplemgr = []
## Set emulator to big endian
be = ["libafl_qemu/be"]
#! ## Mutually exclusive architectures
arm = ["libafl_qemu/arm"]
x86_64 = ["libafl_qemu/x86_64"]
i386 = ["libafl_qemu/i386"]
aarch64 = ["libafl_qemu/aarch64"]
mips = ["libafl_qemu/mips"]
ppc = ["libafl_qemu/ppc", "be"]
hexagon = ["libafl_qemu/hexagon"]
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = true
[build-dependencies]
vergen = { version = "9.0.1", features = ["build", "cargo", "rustc", "si"] }
vergen-git2 = "1.0.1"
[dependencies]
clap = { version = "4.5.18", features = ["derive", "string"] }
libafl = { path = "../LibAFL/libafl", features = ["tui_monitor"] }
libafl_bolts = { path = "../LibAFL/libafl_bolts", features = ["errors_backtrace",]}
libafl_qemu = { path = "../LibAFL/libafl_qemu", features = ["usermode", "x86_64"] }
libafl_targets = { path = "../LibAFL/libafl_targets" }
log = { version = "0.4.22", features = ["release_max_level_info"] }
nix = { version = "0.29.0", features = ["fs"] }
rangemap = { version = "1.5.1" }
readonly = { version = "0.2.12" }
typed-builder = { version = "0.20.0" }
env_logger = "0.10.1"