codespan-reporting 0.13.1

Beautiful diagnostic reporting for text-based programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Diagnostic reporting support for the codespan crate.

#![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;