59 lines
1.9 KiB
Diff
59 lines
1.9 KiB
Diff
From 4d7970904994a6cc5df6b8b1d3d3effaca061127 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
|
|
<jan.christian@gruenhage.xyz>
|
|
Date: Mon, 18 Dec 2023 10:15:19 +0100
|
|
Subject: [PATCH] support libgit2 1.6.4
|
|
|
|
---
|
|
Cargo.lock | 10 +++++-----
|
|
Cargo.toml | 2 +-
|
|
2 files changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/Cargo.lock b/Cargo.lock
|
|
index f6d5b6c..c5f8048 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -1033,11 +1033,11 @@ checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
|
|
|
[[package]]
|
|
name = "git2"
|
|
-version = "0.18.0"
|
|
+version = "0.17.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "12ef350ba88a33b4d524b1d1c79096c9ade5ef8c59395df0e60d1e1889414c0e"
|
|
+checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044"
|
|
dependencies = [
|
|
- "bitflags 2.3.3",
|
|
+ "bitflags 1.3.2",
|
|
"libc",
|
|
"libgit2-sys",
|
|
"log",
|
|
@@ -2263,9 +2263,9 @@ checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
|
|
|
|
[[package]]
|
|
name = "libgit2-sys"
|
|
-version = "0.16.1+1.7.1"
|
|
+version = "0.15.2+1.6.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f2a2bb3680b094add03bb3732ec520ece34da31a8cd2d633d1389d0f0fb60d0c"
|
|
+checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa"
|
|
dependencies = [
|
|
"cc",
|
|
"libc",
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index b77f70d..6004ab7 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -43,7 +43,7 @@ gix-features-for-configuration-only = { package = "gix-features", version = "0.3
|
|
gix = { version = "0.55.2", default-features = false, features = [
|
|
"max-performance-safe", "blob-diff", "mailmap", "index"
|
|
] }
|
|
-git2 = { version = "0.18.0", default-features = false }
|
|
+git2 = { version = "=0.17.2", default-features = false }
|
|
globset = "0.4.13"
|
|
human-panic = "1.2.1"
|
|
image.workspace = true
|
|
--
|
|
2.43.0
|
|
|