From b12244de9bdf74abbf68efe5627fa5b9032a6ae1 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 17 Dec 2023 09:45:42 -0600 Subject: [PATCH] Simplify version req for openssl --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0fd354f..7cc2a20 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.60", 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.60", features = ["vendored"] } [workspace.metadata.release] allow-branch = ["master"]