From a1d31b32644589806574a57247bda4c86a1a7767 Mon Sep 17 00:00:00 2001 From: Adarsh Shah Date: Wed, 3 Jan 2024 15:30:17 -0500 Subject: [PATCH] adds openssl as dependency only for aarch64-apple-darwin --- tembo-cli/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tembo-cli/Cargo.toml b/tembo-cli/Cargo.toml index 03dc8879a..b1c154d79 100644 --- a/tembo-cli/Cargo.toml +++ b/tembo-cli/Cargo.toml @@ -62,6 +62,9 @@ openssl = { version = "0.10", features = ["vendored"] } [target.aarch64-unknown-linux-musl.dependencies] openssl = { version = "0.10", features = ["vendored"] } +[target.aarch64-apple-darwin.dependencies] +openssl = { version = "0.10", features = ["vendored"] } + [dev-dependencies] assert_cmd = "2.0.8" predicates = "2.1.5"