-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
51 lines (47 loc) Β· 1.38 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
[package]
name = "ziggy"
version = "1.3.0"
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/asan",
"examples/url",
]
[dependencies]
afl = { version = "0.15.11", default-features = false, optional = true }
anyhow = { version = "1.0.83", optional = true }
cargo_metadata = { version = "0.18.1", optional = true }
clap = { version = "4.5.4", features = ["cargo", "derive", "env"], optional = true }
console = { version = "0.15.8", optional = true }
env_logger = { version = "0.11.3", optional = true }
fork = { version = "0.1.23", optional = true }
glob = { version = "0.3.1", optional = true }
honggfuzz = { version = "0.5.56", optional = true }
libc = { version = "0.2.153", optional = true }
log = { version = "0.4.21", optional = true }
semver = { version = "1.0.23", optional = true }
strip-ansi-escapes = { version = "0.2.0", optional = true }
time-humanize = { version = "0.1.3", optional = true }
[features]
default = ["cli"]
cli = [
"clap",
"console",
"glob",
"semver",
"anyhow",
"log",
"env_logger",
"strip-ansi-escapes",
"libc",
"time-humanize",
"cargo_metadata",
]
coverage = ["fork", "libc"]
[lints.clippy]
needless_doctest_main = "allow"