-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) Β· 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (66 loc) Β· 1.84 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
66
67
68
69
70
71
[package]
name = "ziggy"
version = "1.7.2"
edition = "2024"
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/unstable",
"examples/url",
]
[[bin]]
name = "cargo-ziggy"
required-features = ["cli"]
[features]
default = ["cli"]
cli = [
"anyhow",
"cargo_metadata",
"clap",
"console",
"glob",
"indicatif",
"libc",
"rayon",
"semver",
"signal-hook",
"strip-ansi-escapes",
"target-triple",
"tempfile",
"thread_local",
"time-humanize",
"twox-hash",
"wait-timeout",
]
coverage = []
[dependencies]
afl = { version = "0.18.2", default-features = false, optional = true }
anyhow = { version = "1.0.102", optional = true }
cargo_metadata = { version = "0.23.1", optional = true }
clap = { version = "4.6.0", features = [
"cargo",
"derive",
"env",
], optional = true }
console = { version = "0.16.3", optional = true }
glob = { version = "0.3.3", optional = true }
honggfuzz = { version = "0.5.60", optional = true }
indicatif = { version = "0.18.4", optional = true }
libc = { version = "0.2.183", optional = true }
rayon = { version = "1.11.0", optional = true }
semver = { version = "1.0.27", optional = true }
signal-hook = { version = "0.4.3", optional = true }
strip-ansi-escapes = { version = "0.2.1", optional = true }
target-triple = { version = "1.0.0", optional = true }
tempfile = { version = "3.27.0", optional = true }
thread_local = { version = "1.1.9", optional = true }
time-humanize = { version = "0.1.3", optional = true }
twox-hash = { version = "2.1.2", optional = true }
wait-timeout = { version = "0.2.1", optional = true }
[lints.clippy]
needless_doctest_main = "allow"