retina/fuzz/Cargo.toml
Scott Lamb 1279dec0c3 H.264 fixes, testing, packetizer
Fuzz testing found a few bugs in the new H.264 depacketizer.
Also add a H.264 packetizer. Currently it's just used for testing.
2021-06-25 16:39:48 -07:00

35 lines
522 B
TOML

[package]
name = "retina-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
bytes = "1"
libfuzzer-sys = "0.4"
[dependencies.retina]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "depacketize_h264"
path = "fuzz_targets/depacketize_h264.rs"
test = false
doc = false
[[bin]]
name = "roundtrip_h264"
path = "fuzz_targets/roundtrip_h264.rs"
test = false
doc = false