From 5ad23deaf474ecd364ac73eec42e4802d893ee9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Mar 2026 01:13:38 +0000 Subject: [PATCH 1/2] deps(cargo): update reqwest requirement in /apps/desktop/src-tauri Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.13.2) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- apps/desktop/src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 75e92ef..93ed81e 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -23,7 +23,7 @@ serde_json = "1.0.149" # native-tls (OpenSSL/Schannel) matches the TLS stack used by `proxmux_ws_proxy` when talking to hosts # that may present a self-signed *leaf*; rustls/webpki often returns UnknownIssuer for the same PEM # (EE basicConstraints), so this crate opts into the native-tls backend for compatibility. -reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "native-tls"] } +reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "native-tls"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "io-util"] } tokio-tungstenite = { version = "0.26", default-features = false, features = ["handshake", "connect"] } native-tls = "0.2" From 6a64ffb20092f83e888b5a21e44de9c2dc2418dd Mon Sep 17 00:00:00 2001 From: Joachim Mild Date: Tue, 31 Mar 2026 03:15:22 +0200 Subject: [PATCH 2/2] fix: add form feature for reqwest 0.13 --- apps/desktop/src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 93ed81e..4920285 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -23,7 +23,7 @@ serde_json = "1.0.149" # native-tls (OpenSSL/Schannel) matches the TLS stack used by `proxmux_ws_proxy` when talking to hosts # that may present a self-signed *leaf*; rustls/webpki often returns UnknownIssuer for the same PEM # (EE basicConstraints), so this crate opts into the native-tls backend for compatibility. -reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "native-tls"] } +reqwest = { version = "0.13", default-features = false, features = ["blocking", "form", "json", "native-tls"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "io-util"] } tokio-tungstenite = { version = "0.26", default-features = false, features = ["handshake", "connect"] } native-tls = "0.2"