mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 09:22:55 +00:00
18 lines
593 B
TOML
18 lines
593 B
TOML
[package]
|
|
name = "tracing-utils"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
hyper.workspace = true
|
|
opentelemetry = { workspace = true, features=["rt-tokio"] }
|
|
opentelemetry-otlp = { workspace = true, default-features=false, features = ["http-proto", "trace", "http", "reqwest-client"] }
|
|
opentelemetry-semantic-conventions.workspace = true
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
tracing.workspace = true
|
|
tracing-opentelemetry.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber.workspace = true # For examples in docs
|