use mail_auth::report::Report;
const TEST_MESSAGE: &str = include_str!("../resources/dmarc-feedback/100.eml");
fn main() {
let report = Report::parse_rfc5322(TEST_MESSAGE.as_bytes()).unwrap();
println!("{}", serde_json::to_string_pretty(&report).unwrap());
}