core / fuzz /fuzz_targets /fuzz_mailparse.rs
AbdulElahGwaith's picture
Upload folder using huggingface_hub
0220cd3 verified
use bolero::check;
fn main() {
check!().for_each(|data: &[u8]| {
mailparse::parse_mail(data).ok();
});
}