Update to opentelemetry 0.20.0 (#131)

This commit is contained in:
tottoto
2023-08-10 17:28:39 +09:00
committed by GitHub
parent c4daf72e11
commit 04a9794003
2 changed files with 370 additions and 317 deletions

679
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -30,13 +30,13 @@ tokio-stream = "0.1"
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
# Implements the types defined in the OTel spec
opentelemetry = { version = "0.19.0", optional = true }
opentelemetry = { version = "0.20.0", optional = true }
# Integration between the tracing crate and the opentelemetry crate
tracing-opentelemetry = { version = "0.19.0", optional = true }
tracing-opentelemetry = { version = "0.20.0", optional = true }
# Provides a "propagator" to pass along an XrayId across services
opentelemetry-aws = { version = "0.7.0", optional = true }
opentelemetry-aws = { version = "0.8.0", optional = true }
# Allows you to send data to the OTel collector
opentelemetry-otlp = { version = "0.12.0", optional = true }
opentelemetry-otlp = { version = "0.13.0", optional = true }
[dev-dependencies]
# Enable test-utilities in dev mode only. This is mostly for tests.