Now let's take a silly one
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