Files
reth/crates/tracing/Cargo.toml
2025-12-27 15:16:49 +00:00

34 lines
757 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
# misc
clap = { workspace = true, features = ["derive"] }
eyre.workspace = true
rolling-file.workspace = true
[features]
default = ["otlp"]
otlp = ["reth-tracing-otlp"]