roc/crates/compiler/test_syntax/fuzz/Cargo.toml
Joshua Warner 4f32f43048
Implement block / indent based parsing
... and enforce that defs can only occur in blocks (or, inside parenthesized expressions)
2024-07-27 13:34:16 -07:00

33 lines
603 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" }
roc_parse = { path = "../../parse" }
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