Files
diffutils/fuzz/Cargo.toml
T

54 lines
809 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]
2024-05-01 09:56:50 +00:00
libfuzzer-sys = "0.4.7"
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 = ["."]
2024-09-23 16:27:40 -03:00
[[bin]]
name = "fuzz_cmp"
path = "fuzz_targets/fuzz_cmp.rs"
test = false
doc = false
[[bin]]
name = "fuzz_cmp_args"
path = "fuzz_targets/fuzz_cmp_args.rs"
test = false
doc = false
2021-02-24 23:05:00 -07:00
[[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
2025-05-26 08:26:10 -03:00
[[bin]]
name = "fuzz_side"
path = "fuzz_targets/fuzz_side.rs"
test = false
doc = false