Skip to main content

studiole_report/
lib.rs

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