oxc/crates/oxc_parser/fuzz/Cargo.toml
2023-04-22 15:58:59 +08:00

26 lines
451 B
TOML

[package]
name = "oxc_fuzzer"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
oxc_ast = { path = "../../oxc_ast" }
oxc_allocator = { path = "../../oxc_allocator" }
libfuzzer-sys = "0.4"
[dependencies.oxc_parser]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "parser"
path = "fuzz_targets/parser.rs"
test = false
doc = false