mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-27 04:50:50 +00:00
32 lines
853 B
TOML
32 lines
853 B
TOML
[package]
|
|
name = "color-spantrace"
|
|
version = "0.3.0"
|
|
description = "A pretty printer for tracing_error::SpanTrace based on color-backtrace"
|
|
documentation = "https://docs.rs/color-spantrace"
|
|
include = ["README.md", "src/**/*.rs", "build.rs", "LICENSE-APACHE", "LICENSE-MIT"]
|
|
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
readme = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[dependencies]
|
|
tracing-error = "0.2.0"
|
|
tracing-core = "0.1.21"
|
|
owo-colors = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = "0.3.4"
|
|
tracing = "0.1.29"
|
|
ansi-parser = "0.8" # used for testing color schemes
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.workspaces]
|
|
independent = true
|