Files
edit/fuzz/Cargo.toml
2026-03-27 22:17:56 +01:00

23 lines
349 B
TOML

[package]
name = "edit-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[workspace]
[dependencies]
edit = { path = "../crates/edit" }
stdext = { path = "../crates/stdext" }
libfuzzer-sys = "0.4"
[[bin]]
name = "highlighter"
path = "fuzz_targets/highlighter.rs"
test = false
doc = false
bench = false