From aec314ce850fb7073c2a537a56fcaa4966a5926c Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sun, 2 Jun 2024 17:27:54 -0700 Subject: [PATCH] get `tracing-opentelemetry` from crates.io They made a release with the changes we needed; we can stop pulling it from git now. --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d5e3abb..1f913bef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3158,8 +3158,9 @@ dependencies = [ [[package]] name = "tracing-opentelemetry" -version = "0.23.0" -source = "git+https://github.com/tokio-rs/tracing-opentelemetry?branch=v0.1.x#2539f4f7bde3dc3f320e5fb935d2c13a69a540dd" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f68803492bf28ab40aeccaecc7021096bd256baf7ca77c3d425d89b35a7be4e4" dependencies = [ "js-sys", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index bedeac21..ba259e43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -134,7 +134,7 @@ tower = { version = "0.4.13", features = ["util"] } tower-http = { version = "0.5.2", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] } tracing = { version = "0.1.40", features = [] } tracing-flame = "0.2.0" -tracing-opentelemetry = { git = "https://github.com/tokio-rs/tracing-opentelemetry", branch = "v0.1.x" } +tracing-opentelemetry = "0.24.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } trust-dns-resolver = "0.23.2"