This repository has no description
1[package]
2name = "knot-pack-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-pack]
16path = ".."
17
18[[bin]]
19name = "pkt"
20path = "fuzz_targets/pkt.rs"
21test = false
22doc = false
23bench = false
24
25[[bin]]
26name = "pack"
27path = "fuzz_targets/pack.rs"
28test = false
29doc = false
30bench = false
31
32[[bin]]
33name = "receive_commands"
34path = "fuzz_targets/receive_commands.rs"
35test = false
36doc = false
37bench = false
38
39[[bin]]
40name = "upload_args"
41path = "fuzz_targets/upload_args.rs"
42test = false
43doc = false
44bench = false
45
46[patch.crates-io]
47gix-pack = { path = "../../../third_party/gix-pack" }