vendor libgit2 and openssl

This commit is contained in:
Nikita Galaiko 2023-02-14 15:20:00 +01:00
parent cb90c84413
commit 798a17d739
No known key found for this signature in database
GPG Key ID: EBAB54E845BA519D
2 changed files with 11 additions and 1 deletions

10
src-tauri/Cargo.lock generated
View File

@ -2153,6 +2153,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.25.0+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.80"
@ -2162,6 +2171,7 @@ dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View File

@ -24,7 +24,7 @@ serde_json = "1.0.92"
uuid = "1.3.0"
yrs = "0.16.1"
difference = "2.0.0"
git2 = "0.16.1"
git2 = { version = "0.16.1", features = ["vendored-openssl", "vendored-libgit2"] }
filetime = "0.2.19"
sha2 = "0.10.6"
sentry-tauri = "0.1.0"