This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-git / fuzz / Cargo.toml
377 B 26 lines
1[package] 2name = "knot-git-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-git] 16path = ".." 17 18[[bin]] 19name = "patch" 20path = "fuzz_targets/patch.rs" 21test = false 22doc = false 23bench = false 24 25[patch.crates-io] 26gix-pack = { path = "../../../third_party/gix-pack" }