roc/crates/compiler/test_syntax/fuzz/Cargo.toml
2023-03-06 19:47:57 -08:00

32 lines
541 B
TOML

[package]
name = "test_syntax-fuzz"
publish = false
authors.workspace = true
edition.workspace = true
version.workspace = true
[package.metadata]
cargo-fuzz = true
[dependencies]
test_syntax = { path = "../../test_syntax" }
bumpalo.workspace = true
libfuzzer-sys.workspace = true
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_expr"
path = "fuzz_targets/fuzz_expr.rs"
test = false
doc = false
[[bin]]
name = "fuzz_module"
path = "fuzz_targets/fuzz_module.rs"
test = false
doc = false