oxc/crates/oxc_parser/fuzz/Cargo.toml

25 lines
408 B
TOML

[package]
name = "oxc_fuzzer"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
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