mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
32 lines
566 B
TOML
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
|