diff --git a/Cargo.lock b/Cargo.lock index e74b6b2c2107c..a2ba505ea78df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8824,15 +8824,15 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.20.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2" +checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" dependencies = [ "futures-util", "log", "rustls 0.21.7", "tokio", - "tungstenite 0.20.0", + "tungstenite 0.20.1", ] [[package]] @@ -9306,9 +9306,9 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.20.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" +checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" dependencies = [ "byteorder", "bytes 1.5.0", @@ -9772,7 +9772,7 @@ dependencies = [ "tokio-postgres", "tokio-stream", "tokio-test", - "tokio-tungstenite 0.20.0", + "tokio-tungstenite 0.20.1", "tokio-util", "toml 0.8.0", "tonic 0.10.1", @@ -9822,7 +9822,7 @@ dependencies = [ "serde_json", "tokio", "tokio-stream", - "tokio-tungstenite 0.20.0", + "tokio-tungstenite 0.20.1", "url", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml index 343b4d9c36b99..7e5833ab91e2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -320,7 +320,7 @@ strip-ansi-escapes = { version = "0.2.0", default-features = false } syslog = { version = "6.1.0", default-features = false, optional = true } tikv-jemallocator = { version = "0.5.4", default-features = false, optional = true } tokio-postgres = { version = "0.7.10", default-features = false, features = ["runtime", "with-chrono-0_4"], optional = true } -tokio-tungstenite = {version = "0.20.0", default-features = false, features = ["connect"], optional = true} +tokio-tungstenite = {version = "0.20.1", default-features = false, features = ["connect"], optional = true} toml = { version = "0.8.0", default-features = false, features = ["parse", "display"] } tonic = { version = "0.10", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } trust-dns-proto = { version = "0.23.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 4b6543f7648c0..bd1f8392eb34e 100644 --- a/lib/vector-api-client/Cargo.toml +++ b/lib/vector-api-client/Cargo.toml @@ -26,7 +26,7 @@ graphql_client = { version = "0.13.0", default-features = false, features = ["gr # HTTP / WebSockets reqwest = { version = "0.11.20", default-features = false, features = ["json"] } -tokio-tungstenite = { version = "0.20.0", default-features = false, features = ["connect", "rustls"] } +tokio-tungstenite = { version = "0.20.1", default-features = false, features = ["connect", "rustls"] } # External libs chrono = { version = "0.4.6", default-features = false, features = ["serde"] }