diff --git a/Cargo.lock b/Cargo.lock index 78e23e5a..329697e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -931,7 +931,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -2167,7 +2167,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -2818,7 +2818,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.60.2", ] [[package]] @@ -3436,7 +3436,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing", - "tungstenite", + "tungstenite 0.24.0", "url", ] @@ -3456,7 +3456,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -3522,7 +3522,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -4225,7 +4225,7 @@ dependencies = [ "getrandom 0.4.2", "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -4423,14 +4423,14 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.24.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.29.0", ] [[package]] @@ -4744,6 +4744,22 @@ dependencies = [ "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", + "rand 0.9.4", + "sha1", + "thiserror 2.0.18", +] + [[package]] name = "typenum" version = "1.19.0" @@ -5156,7 +5172,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index be43179c..47ef6aeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ toon-format = { version = "0.4", default-features = false } criterion = { version = "0.5", features = ["html_reports"] } # WebSocket -tokio-tungstenite = "0.24" +tokio-tungstenite = "0.29" tungstenite = "0.24" # gRPC diff --git a/crates/rustapi-ws/Cargo.toml b/crates/rustapi-ws/Cargo.toml index 2ce79b2c..5b138cd6 100644 --- a/crates/rustapi-ws/Cargo.toml +++ b/crates/rustapi-ws/Cargo.toml @@ -18,7 +18,7 @@ rustapi-core = { workspace = true } rustapi-openapi = { workspace = true } # WebSocket implementation -tokio-tungstenite = "0.24" +tokio-tungstenite = "0.29" tungstenite = "0.24" # Async runtime