From 88f271dd13237dbe3e494c77afcde8908519ea50 Mon Sep 17 00:00:00 2001 From: Midas Lambrichts Date: Wed, 30 Aug 2023 12:38:41 +0200 Subject: [PATCH] Bump tokio-streams minimum version to 0.1.1 The `Stream` wrappers that are used were added in 0.1.1: https://github.com/tokio-rs/tokio/blob/master/tokio-stream/CHANGELOG.md#011-january-4-2021 --- opentelemetry-sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentelemetry-sdk/Cargo.toml b/opentelemetry-sdk/Cargo.toml index aa8d125c19..92ae1c145a 100644 --- a/opentelemetry-sdk/Cargo.toml +++ b/opentelemetry-sdk/Cargo.toml @@ -28,7 +28,7 @@ serde_json = { version = "1", optional = true } thiserror = "1" url = { version = "2.2", optional = true } tokio = { version = "1.0", default-features = false, features = ["rt", "time"], optional = true } -tokio-stream = { version = "0.1", optional = true } +tokio-stream = { version = "0.1.1", optional = true } http = { version = "0.2", optional = true } [package.metadata.docs.rs]