diff --git a/packages/rust/slop-ai/Cargo.lock b/packages/rust/slop-ai/Cargo.lock index e4639d2..5d0ccd0 100644 --- a/packages/rust/slop-ai/Cargo.lock +++ b/packages/rust/slop-ai/Cargo.lock @@ -37,7 +37,7 @@ dependencies = [ "sha1", "sync_wrapper", "tokio", - "tokio-tungstenite 0.28.0", + "tokio-tungstenite", "tower", "tower-layer", "tower-service", @@ -521,7 +521,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tokio-tungstenite 0.26.2", + "tokio-tungstenite", ] [[package]] @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.50.0" +version = "1.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" +checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd" dependencies = [ "bytes", "libc", @@ -594,27 +594,15 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.6.1" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" dependencies = [ "proc-macro2", "quote", "syn", ] -[[package]] -name = "tokio-tungstenite" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" -dependencies = [ - "futures-util", - "log", - "tokio", - "tungstenite 0.26.2", -] - [[package]] name = "tokio-tungstenite" version = "0.28.0" @@ -624,7 +612,7 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.28.0", + "tungstenite", ] [[package]] @@ -675,23 +663,6 @@ dependencies = [ "once_cell", ] -[[package]] -name = "tungstenite" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" -dependencies = [ - "bytes", - "data-encoding", - "http", - "httparse", - "log", - "rand", - "sha1", - "thiserror", - "utf-8", -] - [[package]] name = "tungstenite" version = "0.28.0" diff --git a/packages/rust/slop-ai/Cargo.toml b/packages/rust/slop-ai/Cargo.toml index fed0c6e..bcfab55 100644 --- a/packages/rust/slop-ai/Cargo.toml +++ b/packages/rust/slop-ai/Cargo.toml @@ -29,7 +29,7 @@ thiserror = "2" # Optional — pulled by feature flags tokio = { version = "1", features = ["rt", "io-util", "io-std", "net", "sync", "macros", "rt-multi-thread", "time"], optional = true } -tokio-tungstenite = { version = "0.26", optional = true } +tokio-tungstenite = { version = "0.28", optional = true } futures-util = { version = "0.3", optional = true } axum = { version = "0.8", features = ["ws"], optional = true }