1[package] 2name = "derive_fuzz_example" 3version.workspace = true 4edition.workspace = true 5publish.workspace = true 6 7[package.metadata] 8cargo-fuzz = true 9 10[dependencies] 11arbitrary.workspace = true 12derive_fuzztest.workspace = true 13quickcheck.workspace = true 14 15[target.'cfg(fuzzing)'.dependencies] 16libfuzzer-sys.workspace = true 17