mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 07:32:12 +03:00
11 lines
215 B
Rust
11 lines
215 B
Rust
use bolero::check;
|
|
|
|
fn main() {
|
|
check!().for_each(|data: &[u8]| match std::str::from_utf8(data) {
|
|
Ok(input) => {
|
|
mailparse::dateparse(input).ok();
|
|
}
|
|
Err(_err) => {}
|
|
});
|
|
}
|