/ crates / tor-cell / fuzz / Cargo.toml
Cargo.toml
 1  
 2  [package]
 3  name = "tor-cell-fuzz"
 4  version = "0.0.0"
 5  authors = ["Automatically generated"]
 6  publish = false
 7  edition = "2021"
 8  
 9  [package.metadata]
10  cargo-fuzz = true
11  
12  [dependencies]
13  libfuzzer-sys = "0.4"
14  
15  [dependencies.tor-cell]
16  path = ".."
17  features = ["hs", "experimental"]
18  
19  [dependencies.tor-bytes]
20  path = "../../tor-bytes"
21  
22  # Prevent this from interfering with workspaces
23  [workspace]
24  members = ["."]
25  
26  [[bin]]
27  name = "relaymsg"
28  path = "fuzz_targets/relaymsg.rs"
29  test = false
30  doc = false
31  
32  [[bin]]
33  name = "chanmsg"
34  path = "fuzz_targets/chanmsg.rs"
35  test = false
36  doc = false