summaryrefslogtreecommitdiff
path: root/crates/tor-netdoc/fuzz/Cargo.toml
blob: 7532627e4157468e4a8ab2d5daa769056aaa5cd9 (plain)
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
[package]
name = "tor-netdoc-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2024"

[package.metadata]
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"

[dependencies.tor-netdoc]
path = ".."
features = ["hs-service"]

# Prevent this from interfering with workspaces
[workspace]
members = ["."]

[[bin]]
name = "authcert"
path = "fuzz_targets/authcert.rs"
test = false
doc = false

[[bin]]
name = "routers"
path = "fuzz_targets/routers.rs"
test = false
doc = false

[[bin]]
name = "mds"
path = "fuzz_targets/mds.rs"
test = false
doc = false

[[bin]]
name = "consensus"
path = "fuzz_targets/consensus.rs"
test = false
doc = false

[[bin]]
name = "nsconsensus"
path = "fuzz_targets/nsconsensus.rs"
test = false
doc = false

[[bin]]
name = "hsdesc"
path = "fuzz_targets/hsdesc.rs"
test = false
doc = false