mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
34 lines
757 B
TOML
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"]
|