You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
526 B
32 lines
526 B
[package] |
|
name = "zune-jpeg-fuzz" |
|
version = "0.0.0" |
|
authors = ["Automatically generated"] |
|
publish = false |
|
edition = "2018" |
|
|
|
[package.metadata] |
|
cargo-fuzz = true |
|
|
|
[dependencies] |
|
libfuzzer-sys = "0.4" |
|
|
|
[dependencies.zune-jpeg] |
|
path = ".." |
|
features = ["neon", "x86"] |
|
|
|
# Prevent this from interfering with workspaces |
|
[workspace] |
|
members = ["."] |
|
|
|
[[bin]] |
|
name = "decode_buffer" |
|
path = "fuzz_targets/decode_buffer.rs" |
|
test = false |
|
doc = false |
|
|
|
[[bin]] |
|
name = "fuzz_idct" |
|
path = "fuzz_targets/fuzz_idct.rs" |
|
test = false |
|
doc = false
|
|
|