forked from srlabs/ziggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) Β· 1.01 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
[package]
name = "ziggy"
version = "0.6.8"
edition = "2021"
license = "Apache-2.0"
description = "A multi-fuzzer management utility for all of your Rust fuzzing needs π§βπ€"
repository = "https://github.com/srlabs/ziggy/"
[workspace]
members = [
".",
"examples/arbitrary",
"examples/url",
]
[dependencies]
clap = { version = "4.4.1", features = ["cargo", "derive"], optional = true }
console = { version = "0.15.7", optional = true }
glob = { version = "0.3.1", optional = true }
toml = { version = "0.7.6", optional = true }
anyhow = { version = "1.0.75", optional = true }
afl = { version = "0.14.1", default-features = false, optional = true }
honggfuzz = { version = "0.5.55", optional = true }
serde_json = { version = "1.0.105", optional = true }
log = { version = "0.4.20", optional = true }
env_logger = { version = "0.10.0", optional = true }
rand = "0.8"
libc = "0.2.147"
[features]
coverage = []
default = ["cli"]
cli = ["clap", "console", "glob", "toml", "anyhow", "serde_json", "log", "env_logger"]