# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "derive_fuzztest" version = "0.1.4" build = false publish = true autobins = false autoexamples = false autotests = false autobenches = false description = "A Rust proc-macro to enable using the same implementation for fuzz tests and property tests." readme = "README.md" categories = ["development-tools::testing"] license = "Apache-2.0" repository = "https://github.com/google/rust-derive-fuzztest" [lib] name = "derive_fuzztest" path = "src/lib.rs" [[test]] name = "run_fuzz" path = "tests/run_fuzz.rs" [dependencies.arbitrary] version = "1.3.2" [dependencies.derive_fuzztest_macro] version = "0.1.4" [dependencies.proptest] version = "1.4.0" optional = true [dependencies.proptest-arbitrary-interop] version = "0.1.0" optional = true [dependencies.quickcheck] version = "1.0.3" optional = true [dev-dependencies.anyhow] version = "1.0.86" [dev-dependencies.xshell] version = "0.2.6" [features] all = [ "quickcheck", "proptest", ] default = ["quickcheck"] proptest = [ "dep:proptest", "dep:proptest-arbitrary-interop", "derive_fuzztest_macro/proptest", ] quickcheck = [ "dep:quickcheck", "derive_fuzztest_macro/quickcheck", ] [target."cfg(fuzzing)".dependencies.libfuzzer-sys] version = "0.4.7" [lints.clippy] expect_used = "deny" indexing_slicing = "deny" panic = "deny" unwrap_used = "deny" [lints.rust] missing_docs = "deny" trivial_casts = "deny" trivial_numeric_casts = "deny" unsafe_code = "deny" unsafe_op_in_unsafe_fn = "deny" unused_extern_crates = "deny" unused_import_braces = "deny" unused_results = "deny" [lints.rust.unexpected_cfgs] level = "warn" priority = 0 check-cfg = ["cfg(fuzzing)"]