[package]
edition = "2024"
name = "tracing-scribe"
version = "0.2.0"
authors = ["Matteo Bigoi <matteo.bigoi@helsing.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tracing-subscriber layer for beautifully printing spans and events to the terminal as a hierarchical tree."
homepage = "https://github.com/helsing-ai/tracing-scribe"
documentation = "https://docs.rs/tracing-scribe"
readme = "README.md"
keywords = [
"tracing",
"logging",
"terminal",
"subscriber",
"console",
]
categories = [
"development-tools::debugging",
"command-line-interface",
]
license = "Apache-2.0"
repository = "https://github.com/helsing-ai/tracing-scribe"
[lib]
name = "tracing_scribe"
path = "src/lib.rs"
[[example]]
name = "custom_colors"
path = "examples/custom_colors.rs"
[[example]]
name = "full"
path = "examples/full.rs"
[dependencies.owo-colors]
version = "4.2.3"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.20"
features = [
"fmt",
"registry",
]
[dev-dependencies.insta]
version = "1.43.2"
[dev-dependencies.regex]
version = "1.11.3"
[dev-dependencies.strip-ansi-escapes]
version = "0.2.1"
[dev-dependencies.tokio]
version = "1.47.1"
features = [
"rt",
"time",
"macros",
]