2022-01-03 01:53:26 +00:00
|
|
|
[package]
|
|
|
|
name = "lofty-fuzz"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Automatically generated"]
|
|
|
|
publish = false
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libfuzzer-sys = "0.4"
|
|
|
|
|
|
|
|
[dependencies.lofty]
|
|
|
|
path = ".."
|
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "filetype_from_buffer"
|
|
|
|
path = "fuzz_targets/filetype_from_buffer.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "mp3file_read_from"
|
|
|
|
path = "fuzz_targets/mp3file_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "aifffile_read_from"
|
|
|
|
path = "fuzz_targets/aifffile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "apefile_read_from"
|
|
|
|
path = "fuzz_targets/apefile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "flacfile_read_from"
|
|
|
|
path = "fuzz_targets/flacfile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "mp4file_read_from"
|
|
|
|
path = "fuzz_targets/mp4file_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "opusfile_read_from"
|
|
|
|
path = "fuzz_targets/opusfile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "vorbisfile_read_from"
|
|
|
|
path = "fuzz_targets/vorbisfile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "wavfile_read_from"
|
2022-01-03 02:09:01 +00:00
|
|
|
path = "fuzz_targets/wavfile_read_from.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "pictureinformation_from_jpeg"
|
|
|
|
path = "fuzz_targets/pictureinformation_from_jpeg.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "pictureinformation_from_png"
|
|
|
|
path = "fuzz_targets/pictureinformation_from_png.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "picture_from_reader"
|
|
|
|
path = "fuzz_targets/picture_from_reader.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "picture_from_apic_bytes"
|
|
|
|
path = "fuzz_targets/picture_from_apic_bytes.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "picture_from_flac_bytes"
|
|
|
|
path = "fuzz_targets/picture_from_flac_bytes.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "picture_from_ape_bytes"
|
|
|
|
path = "fuzz_targets/picture_from_ape_bytes.rs"
|