blob: a5ead09a39252fc609d4d05941e8a1caf9aa5037 [file] [edit]
// README examples require `termcolor`, thus the guard here
#![cfg_attr(
feature = "termcolor",
doc = include_str!("../../README.md")
)]
#![forbid(unsafe_code)]
#![cfg_attr(not(feature = "std"), no_std)]
// for no_std
extern crate alloc;
pub mod diagnostic;
pub mod files;
pub mod term;