From 5c4f255c0a5dcf1ed3106d794b99b19e526ea7e8 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 7 Nov 2023 13:24:46 +0100 Subject: [PATCH] fix: use vendored openssl for unix only --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3983ea5..63cb659 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,9 @@ edition = "2021" [dependencies] azure_identity = "0.17.0" azure_security_keyvault = "0.17.0" -openssl = { version = "0.10", features = ["vendored"] } clap = { version = "4.4.7", features = ["derive"] } futures = "0.3.29" -tokio = {version = "1.33.0", features = ["full"]} \ No newline at end of file +tokio = {version = "1.33.0", features = ["full"]} + +[target.'cfg(unix)'.dependencies] +openssl = { version = "0.10", features = ["vendored"] } \ No newline at end of file