diff --git a/Cargo.lock b/Cargo.lock index 3772465..e79494c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,7 +36,7 @@ dependencies = [ "symphonia", "sysinfo", "tokio", - "tokio-tungstenite 0.28.0", + "tokio-tungstenite 0.29.0", "urlencoding", ] @@ -4087,6 +4087,20 @@ dependencies = [ "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 0.29.0", +] + [[package]] name = "tokio-util" version = "0.7.18" @@ -4288,6 +4302,23 @@ 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", + "native-tls", + "rand 0.9.2", + "sha1", + "thiserror 2.0.18", +] + [[package]] name = "twilight-gateway" version = "0.16.0" diff --git a/Cargo.toml b/Cargo.toml index 36a3653..cb03efc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ tokio = { version = "1.50.0", features = [ "fs", "net", ] } -tokio-tungstenite = { version = "0.28.0", features = [ +tokio-tungstenite = { version = "0.29.0", features = [ "native-tls", "tokio-native-tls", ] }