1 2[package] 3name = "nom-fuzz" 4version = "0.0.0" 5authors = ["David Korczynski <david@adalogics.com>"] 6publish = false 7edition = "2018" 8 9[package.metadata] 10cargo-fuzz = true 11 12[dependencies] 13libfuzzer-sys = "0.4.0" 14 15[dependencies.nom] 16path = ".." 17 18# Prevent this from interfering with workspaces 19[workspace] 20members = ["."] 21 22[[bin]] 23name = "fuzz_arithmetic" 24path = "fuzz_targets/fuzz_arithmetic.rs" 25