[package] name = "subst-fuzz" version = "0.0.0" publish = false edition = "2024" [package.metadata] cargo-fuzz = true [dependencies] # `arbitrary` with `derive` is what lets the target take `&str` instead of # `&[u8]`. Byte input would spend most of the fuzzer's budget rediscovering # UTF-8 before it ever reached the marker grammar. libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] } [dependencies.subst] path = ".." [[bin]] name = "substitute" path = "fuzz_targets/substitute.rs" test = false doc = false bench = false