[package]
name = "dev-fuzz"
version = "0.9.1"
edition = "2021"
rust-version = "1.85"
readme = "README.md"
license = "Apache-2.0"
authors = [
"James Gober <me@jamesgober.com>"
]
description = "Fuzz testing workflow for Rust. Wraps cargo-fuzz: budgeted runs, crash / timeout / OOM findings, deterministic reproducer paths, sanitizer choice, machine-readable verdicts. Part of the dev-* verification collection."
keywords = [
"fuzz",
"fuzzing",
"libfuzzer",
"cargo-fuzz",
"testing"
]
categories = [
"development-tools",
"development-tools::testing",
"development-tools::debugging"
]
documentation = "https://docs.rs/dev-fuzz"
repository = "https://github.com/jamesgober/dev-fuzz"
homepage = "https://github.com/jamesgober/dev-fuzz"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
dev-report = { version = "0.9", path = "../dev-report" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
tempfile = "3"
[features]
default = []
[profile.release]
opt-level = 3
lto = "thin"