/ crates / tor-bytes / fuzz / Cargo.toml
Cargo.toml
 1  
 2  [package]
 3  name = "tor-bytes-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   arbitrary = { version = "1", features = ["derive"] }
15  
16  [dependencies.tor-bytes]
17  path = ".."
18  
19  # Prevent this from interfering with workspaces
20  [workspace]
21  members = ["."]
22  
23  [[bin]]
24  name = "reading"
25  path = "fuzz_targets/reading.rs"
26  test = false
27  doc = false