[package] name = "uucore-fuzz" version = "0.0.0" publish = false edition = "2024" [package.metadata] cargo-fuzz = true [dependencies] console = "0.16.0" libfuzzer-sys = "0.4.7" libc = "0.2.153" tempfile = "3.15.0" rand = { version = "0.10.0" } similar = "3.0.0" uucore = { version = "0.9.0", features = ["libc"] } uufuzz = "0.9.0" sed = { path = ".." } # Prevent this from interfering with workspaces [workspace] members = ["."] [[bin]] name = "fuzz_sed" path = "fuzz_targets/fuzz_sed.rs" test = false doc = false