From 246e0d3f79a8d9bfc1b6472fc3c8c9364678a541 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 7 Feb 2025 12:38:39 -0800 Subject: [PATCH] Vendor openssl for lib git --- src-tauri/yaak-git/Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src-tauri/yaak-git/Cargo.toml b/src-tauri/yaak-git/Cargo.toml index 053408f4..65afd973 100644 --- a/src-tauri/yaak-git/Cargo.toml +++ b/src-tauri/yaak-git/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] chrono = { version = "0.4.38", features = ["serde"] } -git2 = { version = "0.20.0" } +git2 = { version = "0.20.0" , features = ["vendored-libgit2", "vendored-openssl"]} log = "0.4.22" serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.132" @@ -18,8 +18,5 @@ ts-rs = { workspace = true, features = ["chrono-impl", "serde-json-impl"] } yaak-models = { workspace = true } yaak-sync = { workspace = true } -[target.'cfg(target_os = "linux")'.dependencies] -openssl-sys = { version = "0.9.105", features = ["vendored"] } # For Ubuntu installation to work - [build-dependencies] tauri-plugin = { version = "2.0.3", features = ["build"] }