mirror of
https://github.com/uutils/diffutils.git
synced 2026-05-07 06:29:54 -04:00
3bc8668f78
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
39 lines
540 B
TOML
39 lines
540 B
TOML
|
|
[package]
|
|
name = "unified-diff-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
diffutils = { path = "../" }
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_patch"
|
|
path = "fuzz_targets/fuzz_patch.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[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
|
|
|
|
|