From c88cbc3f22c903e506a50b0426892b3f0e849b29 Mon Sep 17 00:00:00 2001 From: Joyce Babu Date: Tue, 11 Jun 2024 17:32:50 +0530 Subject: [PATCH] chore: use vendored openssl on non windows platforms --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9756c2a..c1b269b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,8 +24,8 @@ libz-sys = { version = "1.1.12", default-features = false, features = ["libc"] } log = "0.4" env_logger = "0.9" -[target.'cfg(all(target_os = "linux", target_env = "musl"))'.dependencies] -openssl = { version = "0.10", features = ["vendored"] } +[target.'cfg(not(windows))'.dependencies] +openssl = { version = "0.10", features = [ "vendored" ] } [profile.release] lto = true