mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 21:41:58 +00:00
35 lines
919 B
TOML
35 lines
919 B
TOML
[package]
|
|
name = "color-eyre"
|
|
version = "0.3.1"
|
|
authors = ["Jane Lusby <jlusby@yaah.dev>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "A custom context for the `eyre` crate for colorful error reports, suggestions, and `tracing-error` support."
|
|
repository = "https://github.com/yaahc/color-eyre"
|
|
documentation = "https://docs.rs/color-eyre"
|
|
readme = "README.md"
|
|
categories = []
|
|
keywords = []
|
|
|
|
[features]
|
|
default = ["capture-spantrace"]
|
|
capture-spantrace = ["tracing-error", "color-spantrace"]
|
|
|
|
[dependencies]
|
|
eyre = "0.4.2"
|
|
tracing-error = { version = "0.1.2", optional = true }
|
|
color-backtrace = "0.4.0"
|
|
backtrace = "0.3.48"
|
|
indenter = "0.3.0"
|
|
ansi_term = "0.12.1"
|
|
color-spantrace = { version = "0.1.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = "0.2.5"
|
|
tracing = "0.1.13"
|
|
pretty_assertions = "0.6.1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|