-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (47 loc) · 1.63 KB
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
53
[package]
name = "unicornafl"
version = "3.0.0"
edition = "2024"
rust-version = "1.87"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# For macOS autotokens fix
libafl_targets = { git = "https://github.com/AFLplusplus/LibAFL", rev = "c604d2dac47e84b7133e85cfd137acf2d6e0175b", features = [
"pointer_maps",
"forkserver",
"cmplog",
"cmplog_extended_instrumentation",
] }
libafl = { git = "https://github.com/AFLplusplus/LibAFL", rev = "c604d2dac47e84b7133e85cfd137acf2d6e0175b" }
libafl_bolts = { git = "https://github.com/AFLplusplus/LibAFL", rev = "c604d2dac47e84b7133e85cfd137acf2d6e0175b" }
# libafl_targets = { path = "../LibAFL/libafl_targets", features = [
# "pointer_maps",
# "forkserver",
# "cmplog",
# "cmplog_extended_instrumentation",
# ] }
# libafl = {path = "../LibAFL/libafl"}
# libafl_bolts = {path = "../LibAFL/libafl_bolts"}
serde = { version = "1.0", features = ["derive"] }
unicorn-engine = { git = "https://github.com/unicorn-engine/unicorn-engine-rs", rev = "4c1aff177e7846bbda3e560c18a613c2bbd0d130" }
log = "0.4"
nix = { version = "0.30", features = ["signal"] }
env_logger = { version = "0.11", optional = true }
pyo3 = { version = "0.24.0", features = [
"extension-module",
"abi3-py38",
], optional = true }
pyo3-log = { version = "0.12.2", optional = true }
[features]
default = []
bindings = ["unicorn-engine/dynamic_linkage"]
python = ["pyo3", "pyo3-log", "env_logger", "bindings"]
[lib]
name = "unicornafl"
crate-type = ["cdylib", "staticlib", "rlib"] # For python
[[example]]
name = "sample"
[profile.release]
lto = true
codegen-units = 1
strip = true