From bb8f5d0a8b7ee5e8715747fcbfedbbf7c91489fd Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 3 Feb 2025 19:59:57 +0100 Subject: [PATCH] cargo: bump `openssl` mindep Avoids https://rustsec.org/advisories/RUSTSEC-2025-0004. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 24e902ec..d755eb6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,8 @@ void = { version = "^1.0.1", optional = true } # Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0044 # Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0072 # Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0357 -openssl = { version = "~0.10.66", optional = true } +# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0004 +openssl = { version = "~0.10.70", optional = true } # Required to avoid `instant` transitive dependency. tempfile = { version = "^3.7.0", optional = true } # Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0019 -- GitLab