diff --git a/Cargo.lock b/Cargo.lock index 2587035ad24fc..e8b32d74f8896 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2591,7 +2591,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "windows-sys 0.61.0", + "windows-sys 0.48.0", ] [[package]] @@ -3493,7 +3493,7 @@ dependencies = [ "libc", "option-ext", "redox_users 0.5.0", - "windows-sys 0.61.0", + "windows-sys 0.60.2", ] [[package]] @@ -5370,7 +5370,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2 0.6.0", + "socket2 0.5.10", "system-configuration 0.6.1", "tokio", "tower-service", @@ -11105,7 +11105,7 @@ dependencies = [ "getrandom 0.3.4", "once_cell", "rustix 1.0.1", - "windows-sys 0.61.0", + "windows-sys 0.60.2", ] [[package]] @@ -11315,9 +11315,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.49.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes 1.11.1", "libc", @@ -11475,19 +11475,6 @@ dependencies = [ "tokio-stream", ] -[[package]] -name = "tokio-tungstenite" -version = "0.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" -dependencies = [ - "futures-util", - "log", - "rustls 0.21.12", - "tokio", - "tungstenite 0.20.1", -] - [[package]] name = "tokio-tungstenite" version = "0.21.0" @@ -11496,8 +11483,9 @@ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" dependencies = [ "futures-util", "log", + "rustls 0.22.4", "tokio", - "tungstenite 0.21.0", + "tungstenite", ] [[package]] @@ -12050,25 +12038,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "tungstenite" -version = "0.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" -dependencies = [ - "byteorder", - "bytes 1.11.1", - "data-encoding", - "http 0.2.9", - "httparse", - "log", - "rand 0.8.5", - "sha1", - "thiserror 1.0.68", - "url", - "utf-8", -] - [[package]] name = "tungstenite" version = "0.21.0" @@ -12662,7 +12631,7 @@ dependencies = [ "tokio-postgres", "tokio-stream", "tokio-test", - "tokio-tungstenite 0.20.1", + "tokio-tungstenite", "tokio-util", "toml 0.9.8", "tonic 0.11.0", @@ -12707,7 +12676,7 @@ dependencies = [ "serde_json", "tokio", "tokio-stream", - "tokio-tungstenite 0.20.1", + "tokio-tungstenite", "url", "uuid", ] @@ -12988,7 +12957,7 @@ dependencies = [ "serde_yaml", "tokio", "tokio-stream", - "tokio-tungstenite 0.20.1", + "tokio-tungstenite", "tracing 0.1.44", "url", "uuid", @@ -13294,7 +13263,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "tokio", - "tokio-tungstenite 0.21.0", + "tokio-tungstenite", "tokio-util", "tower-service", "tracing 0.1.44", diff --git a/Cargo.toml b/Cargo.toml index a24afe7d3fa59..04891e2484e29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -197,10 +197,10 @@ serde_yaml = { version = "0.9.34", default-features = false } snafu = { version = "0.8.9", default-features = false, features = ["futures", "std"] } socket2 = { version = "0.5.10", default-features = false } tempfile = "3.23.0" -tokio = { version = "1.49.0", default-features = false } +tokio = { version = "1.50.0", default-features = false } tokio-stream = { version = "0.1.18", default-features = false } tokio-test = "0.4.5" -tokio-tungstenite = { version = "0.20.1", default-features = false } +tokio-tungstenite = { version = "0.21.0", default-features = false } toml = { version = "0.9.8", default-features = false, features = ["serde", "display", "parse"] } tonic = { version = "0.11", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } tonic-build = { version = "0.11", default-features = false, features = ["transport", "prost"] }