Files
chatmail-core/fuzz/fuzz_targets/fuzz_mailparse.rs
2022-12-28 16:23:19 +00:00

8 lines
122 B
Rust

use bolero::check;
fn main() {
check!().for_each(|data: &[u8]| {
mailparse::parse_mail(data).ok();
});
}