28 lines
386 B
TOML
Raw Permalink Normal View History

2025-06-27 02:33:44 +01:00
[package]
name = "nu-path-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[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
doc = false