From d7c4abf2e3f708aab12631c1da900312ee146474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 20 Nov 2024 15:49:22 +0100 Subject: [PATCH] remove git2 default features The crate comes with openssl-related features by default, which breaks the CI on MacOS. --- Cargo.lock | 2 -- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b95b195..aa92ad2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,8 +1626,6 @@ dependencies = [ "libc", "libgit2-sys", "log", - "openssl-probe", - "openssl-sys", "url", ] diff --git a/Cargo.toml b/Cargo.toml index 6270f27..6e6238f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ pgp-gpg = ["email-lib/pgp-gpg", "mml-lib/pgp-gpg", "pimalaya-tui/pgp-gpg", "pgp" pgp-native = ["email-lib/pgp-native", "mml-lib/pgp-native", "pimalaya-tui/pgp-native", "pgp"] [build-dependencies] -git2 = "0.19" +git2 = { version = "0.19", default-features = false } [dependencies] ariadne = "0.2"