#![no_main] use libfuzzer_sys::fuzz_target; use smtp::RawCommand; fuzz_target!(|data: &[u8]| { RawCommand::parse(data); });