#![no_main] use libfuzzer_sys::fuzz_target; fuzz_target!(|data: &[u8]| { let _ = dd3_protocol::decode_batch_v3(data); });