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