mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
26 lines
451 B
TOML
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
|