nusb/fuzz/Cargo.toml
2023-12-16 21:52:00 -07:00

27 lines
387 B
TOML

[package]
name = "nusb-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.nusb]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = 1
[[bin]]
name = "descriptors"
path = "fuzz_targets/descriptors.rs"
test = false
doc = false