git.delta.rocks / fleet / refs/commits / 9766610438d2

difftreelog

source

crates/goodlog-subscriber/Cargo.toml876 Bsourcehistory
1[package]2name = "goodlog-subscriber"3version.workspace = true4edition.workspace = true5rust-version.workspace = true6license.workspace = true78[dependencies]9tracing-subscriber.workspace = true1011# Tokio-console12console-subscriber = { workspace = true, optional = true }1314# Indicatif15human-repr = { workspace = true, optional = true }16indicatif = { workspace = true, optional = true }17tracing-indicatif = { workspace = true, optional = true }1819# OTEL20opentelemetry.workspace = true21opentelemetry-appender-tracing.workspace = true22opentelemetry-exporter-env.workspace = true23opentelemetry_sdk.workspace = true24tracing-opentelemetry.workspace = true25clap = { workspace = true, features = ["derive"] }26anyhow.workspace = true27tracing.workspace = true2829[features]30indicatif = ["dep:tracing-indicatif", "dep:indicatif", "dep:human-repr"]31tokio-console = ["dep:console-subscriber"]