roc/crates/compiler/test_syntax/fuzz/Cargo.toml

35 lines
805 B
TOML

[package]
name = "test_syntax-fuzz"
publish = false
version = "0.0.0"
authors = ["Automatically generated"]
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
# WARNING! Do not update these dependencies to use the dot workspace syntax.
# this crate is intentionally not a part of the overall workspace, so making changes here
# is neither necessary nor desired.
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