From 661fe3f61adde937f555f27b6b3cfd227ee4def5 Mon Sep 17 00:00:00 2001 From: Casper Meijn Date: Mon, 28 Oct 2024 12:20:12 +0100 Subject: [PATCH] build(deps): Update `openssl-sys` to 0.9.85 Increase the minimal required version of `openssl-sys` to make sure this crate builds with the minimal specified version numbers. I found this by running `cargo minimal-versions check` on this project. --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc50f8c..87031d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,8 +30,10 @@ schannel = "0.1.17" [target.'cfg(not(any(target_os = "windows", target_vendor = "apple")))'.dependencies] log = "0.4.5" openssl = "0.10.46" -openssl-sys = "0.9.81" +openssl-sys = "0.9.85" openssl-probe = "0.1" +# Require a minimal version of `openssl-macros` as `openssl` doesn't set the minimal version correctly +openssl-macros = "0.1.1" [dev-dependencies] tempfile = "3.0"