Skip to content

Commit 9bf5d93

Browse files
committed
Merge branch 'gix-upgrade'
2 parents f502931 + 6377d3d commit 9bf5d93

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ http-reqwest = ["gix/blocking-http-transport-reqwest-rust-tls"]
3737

3838

3939
[dependencies]
40-
gix = { version = "0.58.0", default-features = false, features = ["blocking-network-client", "blob-diff", "revision"] }
40+
gix = { version = "0.62.0", default-features = false, features = ["blocking-network-client", "blob-diff", "revision"] }
4141
serde = { version = "1", features = ["std", "derive"] }
4242
hex = { version = "0.4.3", features = ["serde"] }
4343
smartstring = { version = "1.0.1", features = ["serde"] }

src/index/diff/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use gix::prelude::ObjectIdExt;
44
use std::sync::atomic::AtomicBool;
55

66
mod delegate;
7+
78
use delegate::Delegate;
89

910
/// The order we maintain for the produced changes.
@@ -309,7 +310,9 @@ impl Index {
309310
.attach(&self.repo)
310311
.ancestors()
311312
.sorting(
312-
gix::traverse::commit::Sorting::ByCommitTimeNewestFirstCutoffOlderThan { seconds },
313+
gix::traverse::commit::simple::Sorting::ByCommitTimeNewestFirstCutoffOlderThan {
314+
seconds,
315+
},
313316
)
314317
.first_parent_only()
315318
.all()

0 commit comments

Comments
 (0)