1[package] 2name = "kmr-wire-fuzz" 3version = "0.0.0" 4authors = ["Automatically generated"] 5publish = false 6edition = "2018" 7 8[package.metadata] 9cargo-fuzz = true 10 11[dependencies] 12libfuzzer-sys = "0.4" 13 14[dependencies.kmr-wire] 15path = ".." 16 17# Prevent this from interfering with workspaces 18[workspace] 19members = ["."] 20 21[[bin]] 22name = "message" 23path = "fuzz_targets/message.rs" 24test = false 25doc = false 26 27[patch.crates-io] 28kmr-derive = { path = "../../derive" } 29