Files
reth/crates/tracing/Cargo.toml
DaniPopes 23f3f8e820 feat: add tracing-tracy (#20958)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 18:37:37 +00:00

37 lines
931 B
TOML

[package]
name = "reth-tracing"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "tracing helpers"
[lints]
workspace = true
[dependencies]
# reth
reth-tracing-otlp = { workspace = true, optional = true }
# obs
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt", "ansi", "json"] }
tracing-appender.workspace = true
tracing-journald.workspace = true
tracing-logfmt.workspace = true
tracing-samply.workspace = true
tracing-tracy = { workspace = true, optional = true }
tracy-client = { workspace = true, optional = true, features = ["demangle"] }
# misc
clap = { workspace = true, features = ["derive"] }
eyre.workspace = true
rolling-file.workspace = true
[features]
default = ["otlp"]
otlp = ["reth-tracing-otlp"]
tracy = ["tracing-tracy", "tracy-client"]