roc/crates/compiler/test_syntax/fuzz/Cargo.toml
2024-04-20 11:21:36 -07:00

32 lines
566 B
TOML

[package]
name = "test_syntax-fuzz"
publish = false
version = "0.0.0"
authors = ["Automatically generated"]
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
test_syntax = { path = "../../test_syntax" }
bumpalo = { version = "3.12.0", features = ["collections"] }
libfuzzer-sys = "0.4"
# 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