1[package] 2name = "kmr-common-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" 13kmr-wire = "*" 14 15[dependencies.kmr-common] 16path = ".." 17 18# Prevent this from interfering with workspaces 19[workspace] 20members = ["."] 21 22[[bin]] 23name = "keyblob" 24path = "fuzz_targets/keyblob.rs" 25test = false 26doc = false 27 28[patch.crates-io] 29kmr-derive = { path = "../../derive" } 30kmr-wire = { path = "../../wire" } 31