fedimint-logging 0.6.1

contains some utilities for logging and tracing
Documentation
[package]
name = "fedimint-logging"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "contains some utilities for logging and tracing"
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }

[features]
telemetry = [
    "tracing-opentelemetry",
    "opentelemetry-jaeger",
    "console-subscriber",
    "opentelemetry"
]

[lib]
name = "fedimint_logging"
path = "src/lib.rs"

[dependencies]
anyhow = { workspace = true }
console-subscriber = { version = "0.4.1", optional = true }
opentelemetry = { version = "0.27.1", optional = true }
opentelemetry-jaeger = { version = "0.22.0", optional = true }
tracing-opentelemetry = { version = "0.24.0", optional = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }