1//! Lightweight error report with diagnostic rendering. 2#![cfg_attr(test, allow(non_snake_case))] 3mod attachments; 4mod extensions; 5mod helpers; 6pub mod prelude; 7#[cfg(feature = "render")] 8mod render; 9mod report; 10mod structured_error;