mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
8 lines
122 B
Rust
8 lines
122 B
Rust
use bolero::check;
|
|
|
|
fn main() {
|
|
check!().for_each(|data: &[u8]| {
|
|
mailparse::parse_mail(data).ok();
|
|
});
|
|
}
|