From 65d0a497c9228a6457043034b27489ffe8f44e1b 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.lock | 6 +++--- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cffb35f..cc6230e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -945,11 +945,11 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "openssl" -version = "0.10.60" +version = "0.10.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" +checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" dependencies = [ - "bitflags 2.4.1", + "bitflags 1.3.2", "cfg-if", "foreign-types", "libc", 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"]