From 4602f92210debb01877adee69ebeaf126c27bafd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 May 2023 05:09:45 +0000 Subject: [PATCH] chore(deps): bump tokio-tungstenite from 0.18.0 to 0.19.0 Bumps [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) from 0.18.0 to 0.19.0. - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.18.0...v0.19.0) --- updated-dependencies: - dependency-name: tokio-tungstenite dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 41 ++++++++++++++++++++++++++++---- Cargo.toml | 2 +- lib/vector-api-client/Cargo.toml | 2 +- 3 files changed, 38 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1569f4fd4ba02..a697a36ce1c07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8419,9 +8419,21 @@ checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" dependencies = [ "futures-util", "log", - "rustls 0.20.7", "tokio", - "tungstenite", + "tungstenite 0.18.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" +dependencies = [ + "futures-util", + "log", + "rustls 0.21.0", + "tokio", + "tungstenite 0.19.0", ] [[package]] @@ -8863,6 +8875,25 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" +dependencies = [ + "byteorder", + "bytes 1.4.0", + "data-encoding", + "http", + "httparse", + "log", + "rand 0.8.5", + "sha1", + "thiserror", + "url", + "utf-8", +] + [[package]] name = "twox-hash" version = "1.6.3" @@ -9302,7 +9333,7 @@ dependencies = [ "tokio-postgres", "tokio-stream", "tokio-test", - "tokio-tungstenite", + "tokio-tungstenite 0.19.0", "tokio-util", "toml 0.7.3", "tonic", @@ -9353,7 +9384,7 @@ dependencies = [ "serde_json", "tokio", "tokio-stream", - "tokio-tungstenite", + "tokio-tungstenite 0.19.0", "url", "uuid", ] @@ -9926,7 +9957,7 @@ dependencies = [ "serde_urlencoded", "tokio", "tokio-stream", - "tokio-tungstenite", + "tokio-tungstenite 0.18.0", "tokio-util", "tower-service", "tracing 0.1.37", diff --git a/Cargo.toml b/Cargo.toml index 9ac3937229b8f..7a812285d8428 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -306,7 +306,7 @@ strip-ansi-escapes = { version = "0.1.1", default-features = false } syslog = { version = "6.1.0", default-features = false, optional = true } tikv-jemallocator = { version = "0.5.0", default-features = false, optional = true } tokio-postgres = { version = "0.7.7", default-features = false, features = ["runtime", "with-chrono-0_4"], optional = true } -tokio-tungstenite = {version = "0.18.0", default-features = false, features = ["connect"], optional = true} +tokio-tungstenite = {version = "0.19.0", default-features = false, features = ["connect"], optional = true} toml = { version = "0.7.3", default-features = false, features = ["parse", "display"] } tonic = { version = "0.9", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } trust-dns-proto = { version = "0.22.0", default-features = false, features = ["dnssec"], optional = true } diff --git a/lib/vector-api-client/Cargo.toml b/lib/vector-api-client/Cargo.toml index 13a0dde8a46eb..d7e15156f0997 100644 --- a/lib/vector-api-client/Cargo.toml +++ b/lib/vector-api-client/Cargo.toml @@ -26,7 +26,7 @@ graphql_client = { version = "0.12.0", default-features = false, features = ["gr # HTTP / WebSockets reqwest = { version = "0.11.17", default-features = false, features = ["json"] } -tokio-tungstenite = { version = "0.18.0", default-features = false, features = ["connect", "rustls"] } +tokio-tungstenite = { version = "0.19.0", default-features = false, features = ["connect", "rustls"] } # External libs chrono = { version = "0.4.6", default-features = false, features = ["serde"] }