| 1 |
[package] |
| 2 |
name = "kittygfx-fuzz" |
| 3 |
version = "0.0.0" |
| 4 |
publish = false |
| 5 |
edition = "2024" |
| 6 |
|
| 7 |
# shop has a root workspace, and without this table cargo resolves this crate |
| 8 |
# into it. `cargo fuzz` only emits it when `--fuzzing-workspace` is passed, so |
| 9 |
# a fuzz crate created the default way inside a workspace repo silently joins |
| 10 |
# the parent and drags libfuzzer-sys into every ordinary build. |
| 11 |
[workspace] |
| 12 |
|
| 13 |
[package.metadata] |
| 14 |
cargo-fuzz = true |
| 15 |
|
| 16 |
[dependencies] |
| 17 |
libfuzzer-sys = "0.4" |
| 18 |
|
| 19 |
[dependencies.kittygfx] |
| 20 |
path = ".." |
| 21 |
|
| 22 |
[[bin]] |
| 23 |
name = "apc" |
| 24 |
path = "fuzz_targets/apc.rs" |
| 25 |
test = false |
| 26 |
doc = false |
| 27 |
bench = false |
| 28 |
|