-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (32 loc) · 884 Bytes
/
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
[package]
name = "seed-tree-analyzer"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "seed-tree-analyzer-libfuzzer"
path = "src/cli_libfuzzer.rs"
required-features = ["libfuzzer"]
[[bin]]
name = "seed-tree-analyzer-afl"
path = "src/cli_afl.rs"
required-features = ["afl"]
[features]
default = ["afl"]
libfuzzer = []
afl = []
[dependencies]
### Logging
log = "0.4.0"
env_logger = "0.8.4"
### CLI Interface
clap = "2.33.3"
### Util
regex = "1.5.4"
binary-diff = { version = "^0", git = "https://github.com/K-atc/binary-diff-rs.git" }
#binary-diff = { version = "^0", path = "../binary-diff-rs" }
### Hasher
sha-1 = "0.10.0"
base16ct = { version = "0.1.1", features = ["alloc"] }
[dev-dependencies]
cargo-husky = { version = "1", features = ["precommit-hook", "run-cargo-fmt"] }