Now let's take a silly one
0

Configure Feed

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

at main 304 B View raw
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