mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
38 lines
975 B
TOML
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"]
|