This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-atproto / fuzz / Cargo.toml
422 B 30 lines
1[package] 2name = "knot-atproto-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-atproto] 16path = ".." 17 18[[bin]] 19name = "pubkey" 20path = "fuzz_targets/pubkey.rs" 21test = false 22doc = false 23bench = false 24 25[[bin]] 26name = "did_document" 27path = "fuzz_targets/did_document.rs" 28test = false 29doc = false 30bench = false