qoi/fuzz/Cargo.toml
2021-12-01 00:05:46 +00:00

31 lines
516 B
TOML

[package]
name = "qoi-fast-fuzz"
version = "0.1.0"
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
# internal
qoi-fast = { path = ".." }
# external
libfuzzer-sys = "0.4"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "qoi_encode"
path = "fuzz_targets/qoi_encode.rs"
test = false
doc = false
[[bin]]
name = "qoi_decode"
path = "fuzz_targets/qoi_decode.rs"
test = false
doc = false