Updated OpenSSL dependency to fix potential security issues (#275)

This commit is contained in:
Thorsten Sommer 2025-02-09 13:10:20 +01:00 committed by GitHub
parent c836bd7f33
commit ad3d8cbb3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

9
runtime/Cargo.lock generated
View File

@ -2331,6 +2331,7 @@ dependencies = [
"keyring",
"log",
"once_cell",
"openssl",
"pbkdf2",
"rand 0.8.5",
"rand_chacha 0.3.1",
@ -2745,9 +2746,9 @@ dependencies = [
[[package]]
name = "openssl"
version = "0.10.66"
version = "0.10.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
checksum = "61cfb4e166a8bb8c9b55c500bc2308550148ece889be90f609377e58140f42c6"
dependencies = [
"bitflags 2.6.0",
"cfg-if",
@ -2786,9 +2787,9 @@ dependencies = [
[[package]]
name = "openssl-sys"
version = "0.9.103"
version = "0.9.105"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
checksum = "8b22d5b84be05a8d6947c7cb71f7c849aa0f112acd4bf51c2a7c1c988ac0a9dc"
dependencies = [
"cc",
"libc",

View File

@ -33,6 +33,7 @@ rcgen = { version = "0.13.2", features = ["pem"] }
# Fixes security vulnerability downstream, where the upstream is not fixed yet:
url = "2.5"
openssl = "0.10.70"
[target.'cfg(target_os = "linux")'.dependencies]
# See issue https://github.com/tauri-apps/tauri/issues/4470