Skip to content

Commit 44c5806

Browse files
committed
fix!: Upgrade to gix 0.72
1 parent 39fda30 commit 44c5806

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ http-reqwest = ["gix/blocking-http-transport-reqwest-rust-tls"]
3434

3535

3636
[dependencies]
37-
gix = { version = "0.71.0", default-features = false, features = ["blocking-network-client", "blob-diff", "revision"] }
37+
gix = { version = "0.72.1", default-features = false, features = ["blocking-network-client", "blob-diff", "revision"] }
3838
serde = { version = "1", features = ["std", "derive"] }
3939
hex = { version = "0.4.3", features = ["serde"] }
4040
smartstring = { version = "1.0.1", features = ["serde"] }
4141
serde_json = "1"
4242
bstr = "1.0.1"
43-
thiserror = "1.0.32"
43+
thiserror = "2"
4444
ahash = "0.8.0"
4545
hashbrown = { version = "0.14.0", features = ["raw"] }
4646
reqwest = { version = "0.12", features = ["blocking"] }

src/index/diff/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,7 @@ impl Index {
319319
.ok()?
320320
.committer()
321321
.ok()?
322-
.time
323-
.seconds;
322+
.seconds();
324323
let mut commits = current_commit
325324
.attach(&self.repo)
326325
.ancestors()

0 commit comments

Comments
 (0)