From aa6028f287bcc49fb7ab55c1c23d986ff0deb687 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Mon, 4 Dec 2023 16:23:02 -0600 Subject: [PATCH] Revert back to openssl 0.10.56 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0fd354f..183db82 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,14 +37,14 @@ reqwest = { version = "0.11.22", default-features = false, features = ["gzip", " [target.'cfg(all(target_os = "windows", not(target_arch="x86_64")))'.dependencies] reqwest = { version = "0.11.22", default-features = false, features = ["gzip", "json", "default-tls"] } -openssl = { version = "=0.10.60", features = ["vendored"] } +openssl = { version = "=0.10.56", features = ["vendored"] } [target.'cfg(all(target_os = "linux", any(target_arch="x86_64", target_arch="arm", target_arch="armv7", target_arch="mipsel")))'.dependencies] reqwest = { version = "0.11.22", default-features = false, features = ["gzip", "json", "rustls-tls"] } [target.'cfg(all(not(all(target_os = "linux", any(target_arch="x86_64", target_arch="arm", target_arch="armv7", target_arch="mipsel"))), not(target_os = "windows"), not(target_os = "darwin")))'.dependencies] reqwest = { version = "0.11.22", default-features = false, features = ["gzip", "json", "default-tls"] } -openssl = { version = "=0.10.60", features = ["vendored"] } +openssl = { version = "=0.10.56", features = ["vendored"] } [workspace.metadata.release] allow-branch = ["master"]