mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
39 lines
642 B
TOML
39 lines
642 B
TOML
[package]
|
|
name = "roc_parse-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.3"
|
|
bumpalo = { version = "3.6.1", features = ["collections"] }
|
|
|
|
[dependencies.roc_parse]
|
|
path = ".."
|
|
|
|
# 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_defs"
|
|
path = "fuzz_targets/fuzz_defs.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_header"
|
|
path = "fuzz_targets/fuzz_header.rs"
|
|
test = false
|
|
doc = false
|