summaryrefslogtreecommitdiff
path: root/crates/tor-general-addr/fuzz/Cargo.toml
blob: 92b03fde63a541c5ca560ac74e1bad9f3e8054db (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
[package]
name = "tor-rtcompat-fuzz"
version = "0.0.0"
publish = false
edition = "2024"

[package.metadata]
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"

[dependencies.tor-general-addr]
path = ".."
features = ["arbitrary"]

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

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


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