[package] name = "shop-grid-fuzz" version = "0.0.0" publish = false edition = "2024" # shop has a root workspace, and without this table cargo resolves this crate # into it. `cargo fuzz` only emits it when `--fuzzing-workspace` is passed, so # a fuzz crate created the default way inside a workspace repo silently joins # the parent and drags libfuzzer-sys into every ordinary build. [workspace] [package.metadata] cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" [dependencies.shop-grid] path = ".." [[bin]] name = "vt" path = "fuzz_targets/vt.rs" test = false doc = false bench = false