nushell/crates/nu-path/fuzz/Cargo.toml

27 lines
385 B
TOML
Raw Normal View History

[package]
name = "nu-path-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.nu-path]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = 1
[[bin]]
name = "path"
path = "fuzz_targets/path_fuzzer.rs"
test = false
2024-05-28 21:04:09 +02:00
doc = false