From 98265727fc9c5f933b5c029dcbaee5c9810a74c6 Mon Sep 17 00:00:00 2001 From: Will Killian Date: Tue, 12 May 2026 21:28:08 -0400 Subject: [PATCH] fix: enable TLS for OTLP HTTP export Signed-off-by: Will Killian --- crates/core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 8fe32c1c..f2bf5472 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -102,5 +102,5 @@ path = "tests/integration/api_surface_tests.rs" opentelemetry-otlp = { version = "0.31.1", default-features = false, features = ["trace", "http-proto"], optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -opentelemetry-otlp = { version = "0.31.1", default-features = false, features = ["trace", "http-proto", "reqwest-blocking-client", "grpc-tonic"], optional = true } +opentelemetry-otlp = { version = "0.31.1", default-features = false, features = ["trace", "http-proto", "reqwest-blocking-client", "reqwest-rustls", "grpc-tonic"], optional = true } tonic = { version = "0.14.1", default-features = false, optional = true }