| [package] |
| name = "cargo-fuzztest" |
| version = "0.1.0" |
| edition = "2024" |
| |
| [dependencies] |
| clap = { version = "4.5", features = ["derive"] } |
| anyhow = "1.0.100" |
| serde = "1.0.228" |
| serde_json = "1.0.150" |
| |
| [dev-dependencies] |
| googletest = "0.14.3" |
| fuzztest = { path = ".." } |
| tempfile = "3.27.0" |
| |
| # Compiled as a [[test]] target so Cargo builds it with the test harness enabled |
| # (`rustc --test`) and exposes `CARGO_BIN_EXE_dummy_fuzz_test_bin` to `runner_test`. |
| [[test]] |
| name = "dummy_fuzz_test_bin" |
| path = "test_crates/dummy_fuzz_crate/src/lib.rs" |
| |
| [[test]] |
| name = "runner_test" |
| path = "tests/runner_test.rs" |
| |
| |
| |