Files

32 lines
520 B
TOML
Raw Permalink Normal View History

2025-08-25 14:52:07 +02:00
[package]
name = "uucore-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
console = "0.16.0"
2025-08-25 14:52:07 +02:00
libfuzzer-sys = "0.4.7"
libc = "0.2.153"
tempfile = "3.15.0"
2026-02-09 16:07:25 +01:00
rand = { version = "0.10.0" }
2026-04-01 23:07:55 +00:00
similar = "3.0.0"
uucore = { version = "0.9.0", features = ["libc"] }
uufuzz = "0.9.0"
2025-08-25 14:52:07 +02:00
2025-11-25 08:07:34 +01:00
sed = { path = ".." }
2025-08-25 14:52:07 +02:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_sed"
path = "fuzz_targets/fuzz_sed.rs"
test = false
doc = false