diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b0fa7813..dff388fa 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -3044,7 +3044,7 @@ dependencies = [ "tiny_http", "tokio", "tokio-stream", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "toml 0.9.12+spec-1.1.0", "tonic", "uuid", @@ -6742,7 +6742,7 @@ dependencies = [ "tauri-plugin", "thiserror 1.0.69", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.28.0", "uuid", "webview2-com", "windows", @@ -7193,13 +7193,25 @@ name = "tokio-tungstenite" version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.28.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" dependencies = [ "futures-util", "log", "native-tls", "tokio", "tokio-native-tls", - "tungstenite", + "tungstenite 0.29.0", ] [[package]] @@ -7495,13 +7507,29 @@ dependencies = [ "http", "httparse", "log", - "native-tls", "rand 0.9.2", "sha1", "thiserror 2.0.18", "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" +dependencies = [ + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "native-tls", + "rand 0.9.2", + "sha1", + "thiserror 2.0.18", +] + [[package]] name = "typeid" version = "1.0.3" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 7d90b088..fa805f50 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -51,7 +51,7 @@ prost-types = "0.14" opentelemetry-proto = { version = "0.27", features = ["gen-tonic", "metrics", "logs"] } tokio-stream = { version = "0.1", features = ["net"] } tokio = { version = "1", features = ["process", "io-util", "sync", "time", "rt", "net"] } -tokio-tungstenite = { version = "0.28", features = ["native-tls"] } +tokio-tungstenite = { version = "0.29", features = ["native-tls"] } futures-util = "0.3" reqwest = { version = "0.13", features = ["json", "blocking", "multipart", "stream", "form"] } base64 = "0.22"