1 2 3 4 5 6 7
#![no_main] use libfuzzer_sys::fuzz_target; use proxy_protocol_rs::parse; fuzz_target!(|data: &[u8]| { let _ = parse(data); });