/ crates / tor-consdiff / fuzz / Cargo.toml
Cargo.toml
 1  
 2  [package]
 3  name = "tor-consdiff-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-consdiff]
16  path = ".."
17  features = ["slow-diff-apply"]
18  
19  # Prevent this from interfering with workspaces
20  [workspace]
21  members = ["."]
22  
23  [[bin]]
24  name = "compare_diffs"
25  path = "fuzz_targets/compare_diffs.rs"
26  test = false
27  doc = false