codespan-reporting 0.12.0

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

#![forbid(unsafe_code)]
#![no_std]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

pub mod diagnostic;
pub mod files;
pub mod term;