use mail_auth::report::Feedback;
const TEST_MESSAGE: &str = include_str!("../resources/arf/001.eml");
fn main() {
let report = Feedback::parse_rfc5322(TEST_MESSAGE.as_bytes()).unwrap();
println!("{}", serde_json::to_string_pretty(&report).unwrap());
}