From c69165a315c499dd4f66eb757ada69fc9043bbfa Mon Sep 17 00:00:00 2001 From: IGI-111 Date: Fri, 23 Feb 2024 06:22:06 +0400 Subject: [PATCH] Revert "Enable the `parallel` feature of `cc`" This reverts commit 92491dbcc12cdcc73194859e6ea68f293a256bb2. Disable parallel feature of cc by default which breaks build of vendored openssl on aarch64 plateform. Fixes #1026 --- libgit2-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgit2-sys/Cargo.toml b/libgit2-sys/Cargo.toml index 67eaf8dc8e..681dc63696 100644 --- a/libgit2-sys/Cargo.toml +++ b/libgit2-sys/Cargo.toml @@ -27,7 +27,7 @@ libz-sys = { version = "1.1.0", default-features = false, features = ["libc"] } [build-dependencies] pkg-config = "0.3.15" -cc = { version = "1.0.43", features = ['parallel'] } +cc = "1.0.43" # parallel feature is not compatible with vendored openssl [target.'cfg(unix)'.dependencies] openssl-sys = { version = "0.9.45", optional = true }