[package]
name = "error-engine"
version = "0.1.0"
edition = "2024"
description = "A message catalog + presentation layer on top of thiserror and tracing for consistent error/warning/info rendering."
license = "MIT OR Apache-2.0"
repository = "https://github.com/naut54/error-engine"
readme = "README.md"
keywords = ["error-handling", "diagnostics", "catalog", "thiserror", "tracing"]
categories = ["development-tools", "rust-patterns"]
[dependencies]
thiserror = "1"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
tracing = "0.1"
owo-colors = { version = "4", optional = true }
[features]
default = []
cli = ["owo-colors"]
[dev-dependencies]
tokio-test = "0.4"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
[[example]]
name = "basic"
[[example]]
name = "cli"
required-features = ["cli"]