mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
3f5461fc62
Support both W3C and Zipkin B3 headers and connectors will prefer B3 headers to extract traces because Cloud Run doesn't respect those headers. V3_GIT_ORIGIN_REV_ID: 1471b848e71d87420bc75b9adee60951f306c856
32 lines
615 B
TOML
32 lines
615 B
TOML
[package]
|
|
name = "tracing-util"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.17"
|
|
http = "0.2"
|
|
opentelemetry = "0.22.0"
|
|
opentelemetry-contrib = "0.14.0"
|
|
opentelemetry-http = "0.11.0"
|
|
opentelemetry-otlp = "0.15.0"
|
|
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
|
|
opentelemetry-semantic-conventions = "0.14.0"
|
|
opentelemetry-zipkin = "0.20.0"
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
[dev-dependencies]
|
|
axum = "0.6"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = [
|
|
"axum", # used in doc examples
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|