Files

39 lines
540 B
TOML
Raw Permalink Normal View History

2021-02-24 23:05:00 -07:00
[package]
name = "unified-diff-fuzz"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
2024-01-22 22:32:11 +01:00
diffutils = { path = "../" }
2021-02-24 23:05:00 -07:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_patch"
path = "fuzz_targets/fuzz_patch.rs"
test = false
doc = false
2024-01-22 22:32:11 +01:00
[[bin]]
name = "fuzz_normal"
path = "fuzz_targets/fuzz_normal.rs"
test = false
doc = false
[[bin]]
name = "fuzz_ed"
path = "fuzz_targets/fuzz_ed.rs"
test = false
doc = false