Files
reth/crates/tracing/Cargo.toml
Kamil Szczygieł 1fbd5a95f8 feat: Support for sending logs through OTLP (#21039)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2026-01-14 21:29:00 +00:00

38 lines
975 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"]
otlp-logs = ["reth-tracing-otlp/otlp-logs"]
tracy = ["tracing-tracy", "tracy-client"]