error-engine 0.2.0

A message catalog + presentation layer on top of thiserror and tracing for consistent error/warning/info rendering.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use thiserror;

mod catalog;
mod diagnostic;
mod engine;
mod error;

pub use catalog::{Catalog, CatalogEntry, UNKNOWN_CODE};
pub use diagnostic::{EngineDiagnostic, Severity};
pub use engine::Engine;
pub use error::EngineError;