From eb3e7aed99b6ab9220f38bcc17ef86f2f11caad5 Mon Sep 17 00:00:00 2001 From: Daniel Jankowski Date: Sun, 13 Oct 2024 17:03:28 +0200 Subject: [PATCH] fix(plugins): force use curl system lib on macOS (#3668) --- Cargo.lock | 1 + zellij-utils/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 52dfadc8..4d9f30aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5128,6 +5128,7 @@ dependencies = [ "colorsys", "common-path", "crossbeam", + "curl-sys", "directories", "expect-test", "futures", diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index 2fb2d6cb..a5aca051 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -58,6 +58,7 @@ humantime = "2.1.0" futures = "0.3.28" openssl-sys = { version = "0.9.93", features = ["vendored"] } isahc = "1.7.2" +curl-sys = { version = "0.4", features = ["force-system-lib-on-osx"] } [dev-dependencies] insta = { version = "1.6.0", features = ["backtrace"] }