1[package] 2name = "derive_fuzztest" 3version.workspace = true 4edition.workspace = true 5publish.workspace = true 6 7[dependencies] 8arbitrary.workspace = true 9derive_fuzztest_macro.workspace = true 10proptest = { workspace = true, optional = true } 11proptest-arbitrary-interop = { workspace = true, optional = true } 12quickcheck = { workspace = true, optional = true } 13 14[features] 15default = ["quickcheck"] 16quickcheck = ["dep:quickcheck", "derive_fuzztest_macro/quickcheck"] 17proptest = [ 18 "dep:proptest", 19 "dep:proptest-arbitrary-interop", 20 "derive_fuzztest_macro/proptest", 21] 22 23[lints] 24workspace = true 25