From 236ad275b85dc0c29c4686f187a064b80d32d32e Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Arcos Date: Tue, 4 Feb 2025 09:09:42 +0100 Subject: [PATCH] build: Fix RUSTSEC-2025-0004 (#473) --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d8e266..bd3e06a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1419,9 +1419,9 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "openssl" -version = "0.10.68" +version = "0.10.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" +checksum = "61cfb4e166a8bb8c9b55c500bc2308550148ece889be90f609377e58140f42c6" dependencies = [ "bitflags 2.6.0", "cfg-if", @@ -1460,9 +1460,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.104" +version = "0.9.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" +checksum = "8b22d5b84be05a8d6947c7cb71f7c849aa0f112acd4bf51c2a7c1c988ac0a9dc" dependencies = [ "cc", "libc", diff --git a/Cargo.toml b/Cargo.toml index 198a692..0cfc58f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ xz2 = "0.1.7" zip = "2.2.1" [target.'cfg(unix)'.dependencies] -openssl = { version = "0.10.68", features = ["vendored"] } +openssl = { version = "0.10.70", features = ["vendored"] } [target.'cfg(windows)'.dependencies] winreg = "0.52.0"