forked from fuzzland/ityfuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 2 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "ityfuzz"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
criterion = "0.4.0"
[[bench]]
name = "ityfuzz"
harness = false
[features]
default = ["cmp", "dataflow", "evm", "print_txn_corpus", "full_trace", ]
evm = []
cmp = []
dataflow = []
evaluation = []
ondisk_corpus = []
# need to turn off when running DV contracts
deployer_is_attacker = []
print_infant_corpus = []
print_txn_corpus = []
fuzz_static = []
flashloan_v2 = []
full_trace = []
force_cache = []
use_presets = []
print_logs = []
[dependencies]
bytes = { version = "1.2.1", features = ["serde"] }
revm = { path = "./externals/revm/crates/revm", features = ["no_gas_measuring", "serde"] }
revm-primitives = { path = "./externals/revm/crates/primitives", features = ["no_gas_measuring", "serde"] }
revm-interpreter = { path = "./externals/revm/crates/interpreter", features = ["no_gas_measuring", "serde"] }
hex = "0.4"
primitive-types = { version = "0.12.1", features = ["rlp", "serde"] }
libafl = "0.8.2"
rand = "0.8.5"
nix = "0.24"
serde = "1.0.147"
serde_traitobject = "0.2.7"
serde_json = "1.0.73"
z3 = {version="0.11.2", features = ["static-link-z3"]}
z3-sys = "0.7.1"
glob = "0.3.0"
rust-crypto = "0.2"
itertools = "0.10.2"
reqwest = { version = "0.11", features = ["blocking", "json"] }
once_cell = "1.8.0"
permutator = "0.4.3"
either = "1.8.0"
regex = "1"
# external fuzzing-based abi decompiler
heimdall = { path = "./externals/heimdall-rs/heimdall" }
# from https://github.com/aptos-labs/aptos-core/blob/main/Cargo.toml#L452
move-binary-format = { path = "./externals/move/language/move-binary-format" }
move-core-types = { path = "./externals/move/language/move-core/types", features = ["address32"] }
move-stdlib = { path = "./externals/move/language/move-stdlib" }
move-vm-runtime = { path = "./externals/move/language/move-vm/runtime", features = ["lazy_natives"] }
move-vm-types = { path = "./externals/move/language/move-vm/types" }
retry = "2.0.0"