Skip to main content

max / shop

599 B · 28 lines History Blame Raw
1 [package]
2 name = "shop-grid-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.shop-grid]
20 path = ".."
21
22 [[bin]]
23 name = "vt"
24 path = "fuzz_targets/vt.rs"
25 test = false
26 doc = false
27 bench = false
28