Fixed local Windows builds by removing dependencies

This commit is contained in:
Thorsten Sommer 2026-03-23 11:10:04 +01:00
parent 90d65bb7d6
commit ef4110019d
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5
2 changed files with 4 additions and 15 deletions

17
runtime/Cargo.lock generated
View File

@ -238,7 +238,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
dependencies = [
"aws-lc-sys",
"untrusted 0.7.1",
"zeroize",
]
@ -2776,7 +2775,6 @@ dependencies = [
"aes",
"arboard",
"async-stream",
"aws-lc-rs",
"base64 0.22.1",
"bytes",
"calamine",
@ -2798,7 +2796,6 @@ dependencies = [
"rcgen",
"reqwest 0.13.2",
"rocket",
"rustls-webpki 0.103.10",
"serde",
"serde_json",
"sha2",
@ -4172,7 +4169,7 @@ dependencies = [
"cfg-if",
"getrandom 0.2.15",
"libc",
"untrusted 0.9.0",
"untrusted",
"windows-sys 0.52.0",
]
@ -4408,7 +4405,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring",
"untrusted 0.9.0",
"untrusted",
]
[[package]]
@ -4420,7 +4417,7 @@ dependencies = [
"aws-lc-rs",
"ring",
"rustls-pki-types",
"untrusted 0.9.0",
"untrusted",
]
[[package]]
@ -4472,7 +4469,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
"ring",
"untrusted 0.9.0",
"untrusted",
]
[[package]]
@ -5785,12 +5782,6 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a"
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "untrusted"
version = "0.9.0"

View File

@ -45,9 +45,7 @@ sysinfo = "0.38.4"
# Fixes security vulnerability downstream, where the upstream is not fixed yet:
time = "0.3.47" # -> Rocket
bytes = "1.11.1" # -> almost every dependency
aws-lc-rs = "1.16.2" # -> reqwest
tar = "0.4.45" # -> Tauri v1
rustls-webpki = "0.103.10" # -> tokio, reqwest
[target.'cfg(target_os = "linux")'.dependencies]
# See issue https://github.com/tauri-apps/tauri/issues/4470