1//! Diagnostic reporting support for the codespan crate. 2 3#![forbid(unsafe_code)] 4#![no_std] 5 6extern crate alloc; 7 8#[cfg(feature = "std")] 9extern crate std; 10 11pub mod diagnostic; 12pub mod files; 13pub mod term;