blob: 291a587809eeaa47cc5ea55ed12f5a63768fb4c1 (
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
|
[package]
name = "tor-ptmgr-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.tor-ptmgr]
path = ".."
features = [ "experimental-api" ]
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "ptmessage"
path = "fuzz_targets/ptmessage.rs"
test = false
doc = false
|