forked from extern/nushell
30 lines
431 B
TOML
30 lines
431 B
TOML
|
[package]
|
||
|
name = "nu-parser-fuzz"
|
||
|
version = "0.0.0"
|
||
|
publish = false
|
||
|
edition = "2021"
|
||
|
|
||
|
[package.metadata]
|
||
|
cargo-fuzz = true
|
||
|
|
||
|
[dependencies]
|
||
|
libfuzzer-sys = "0.4"
|
||
|
nu-protocol = { path = "../../nu-protocol" }
|
||
|
|
||
|
|
||
|
[dependencies.nu-parser]
|
||
|
path = ".."
|
||
|
|
||
|
# Prevent this from interfering with workspaces
|
||
|
[workspace]
|
||
|
members = ["."]
|
||
|
|
||
|
[profile.release]
|
||
|
debug = 1
|
||
|
|
||
|
[[bin]]
|
||
|
name = "parse"
|
||
|
path = "fuzz_targets/parse.rs"
|
||
|
test = false
|
||
|
doc = false
|