Updated tokio-tungstenite

This commit is contained in:
Dave
2026-02-24 11:16:45 +00:00
parent f1f298708e
commit 9c69e25933
2 changed files with 33 additions and 4 deletions

35
Cargo.lock generated
View File

@@ -1452,7 +1452,7 @@ dependencies = [
"thiserror 2.0.18", "thiserror 2.0.18",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
"tokio-tungstenite", "tokio-tungstenite 0.27.0",
"tokio-util", "tokio-util",
"tracing", "tracing",
"wildmatch", "wildmatch",
@@ -2207,7 +2207,7 @@ dependencies = [
"strip-ansi-escapes", "strip-ansi-escapes",
"tempfile", "tempfile",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite 0.28.0",
"toml", "toml",
"uuid", "uuid",
"walkdir", "walkdir",
@@ -2432,7 +2432,19 @@ dependencies = [
"futures-util", "futures-util",
"log", "log",
"tokio", "tokio",
"tungstenite", "tungstenite 0.27.0",
]
[[package]]
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]] [[package]]
@@ -2608,6 +2620,23 @@ dependencies = [
"utf-8", "utf-8",
] ]
[[package]]
name = "tungstenite"
version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
dependencies = [
"bytes 1.11.1",
"data-encoding",
"http",
"httparse",
"log",
"rand",
"sha1",
"thiserror 2.0.18",
"utf-8",
]
[[package]] [[package]]
name = "typenum" name = "typenum"
version = "1.19.0" version = "1.19.0"

View File

@@ -26,5 +26,5 @@ tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] } tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
toml = "1.0.3+spec-1.1.0" toml = "1.0.3+spec-1.1.0"
uuid = { version = "1.21.0", features = ["v4", "serde"] } uuid = { version = "1.21.0", features = ["v4", "serde"] }
tokio-tungstenite = "0.27" tokio-tungstenite = "0.28.0"
walkdir = "2.5.0" walkdir = "2.5.0"