Skip to content

Commit cf058d5

Browse files
fix(deps): update rust crate tokio-tungstenite to 0.24 (v1) (#1782)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <[email protected]>
1 parent 311bfcb commit cf058d5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/localhost/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl Builder {
6363
let asset_resolver = app.asset_resolver();
6464
std::thread::spawn(move || {
6565
let server =
66-
Server::http(&format!("localhost:{port}")).expect("Unable to spawn server");
66+
Server::http(format!("localhost:{port}")).expect("Unable to spawn server");
6767
for req in server.incoming_requests() {
6868
let path = req
6969
.url()

plugins/websocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ http = "1"
1919
rand = "0.8"
2020
futures-util = "0.3"
2121
tokio = { version = "1", features = ["net", "sync"] }
22-
tokio-tungstenite = { version = "0.23", features = ["native-tls"] }
22+
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }

plugins/websocket/examples/tauri-app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tauri = { workspace = true }
1111
tokio = { version = "1", features = ["net"] }
1212
futures-util = "0.3"
1313
tauri-plugin-websocket = { path = "../../../" }
14-
tokio-tungstenite = "0.23"
14+
tokio-tungstenite = "0.24"
1515

1616
[build-dependencies]
1717
tauri-build = { workspace = true }

0 commit comments

Comments
 (0)