-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Cargo.toml
61 lines (54 loc) · 1.28 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
53
54
55
56
57
58
59
60
61
[package]
name = "libafl_cc"
version.workspace = true
authors = ["Andrea Fioraldi <[email protected]>"]
description = "Commodity library to wrap compilers and link LibAFL"
documentation = "https://docs.rs/libafl_cc"
repository = "https://github.com/AFLplusplus/LibAFL/"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing", "compiler"]
edition = "2021"
rust-version = "1.82"
categories = [
"development-tools::testing",
"emulators",
"embedded",
"os",
"no-std",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [
"ddg-instr",
"function-logging",
"cmplog-routines",
"autotokens",
"coverage-accounting",
"cmplog-instructions",
"ctx",
"dump-cfg",
"profiling",
]
# llvm passes
ddg-instr = []
function-logging = []
cmplog-routines = []
autotokens = []
coverage-accounting = []
cmplog-instructions = []
ctx = []
dump-cfg = []
profiling = []
[build-dependencies]
cc = { workspace = true, features = ["parallel"] }
which = { workspace = true }
[target.'cfg(target_vendor = "apple")'.build-dependencies]
glob = "0.3.1"
[dependencies]
serde = { workspace = true, default-features = false, features = [
"alloc",
"derive",
] } # serialization lib
[lints]
workspace = true