qoi/fuzz/Cargo.toml

32 lines
500 B
TOML
Raw Permalink Normal View History

2021-11-30 16:21:03 +00:00
[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 = "encode"
path = "fuzz_targets/encode.rs"
2021-11-30 16:21:03 +00:00
test = false
doc = false
2021-12-01 00:05:46 +00:00
[[bin]]
name = "decode"
path = "fuzz_targets/decode.rs"
2021-12-01 00:05:46 +00:00
test = false
doc = false