This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knot2 / crates / knot-cobs / fuzz / Cargo.toml
487 B 33 lines
1[package] 2name = "knot-cobs-fuzz" 3version = "0.0.0" 4publish = false 5edition = "2024" 6 7[package.metadata] 8cargo-fuzz = true 9 10[workspace] 11 12[dependencies] 13libfuzzer-sys = "0.4" 14 15[dependencies.knot-cobs] 16path = ".." 17 18[[bin]] 19name = "cob_change" 20path = "fuzz_targets/cob_change.rs" 21test = false 22doc = false 23bench = false 24 25[[bin]] 26name = "cob_ref" 27path = "fuzz_targets/cob_ref.rs" 28test = false 29doc = false 30bench = false 31 32[patch.crates-io] 33gix-pack = { path = "../../../third_party/gix-pack" }