1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
[package] name = "oxish-fuzz" version = "0.0.0" publish = false edition = "2021" [package.metadata] cargo-fuzz = true [workspace] [dependencies] libfuzzer-sys = "0.4" [dependencies.proto] package = "oxish-proto" path = "../oxish-proto" [[bin]] name = "decode" path = "fuzz_targets/decode.rs" test = false doc = false bench = false