Skip to content

Commit 68a0d9d

Browse files
authored
Update git2 to 0.20.2 (#434)
This updates the `git2` crate to 0.20.2, as linking on Windows (except win7) is broken in Rust 1.87+ due to rust-lang/rust#138233, which rust-lang/git2-rs#1143 fixed in `git2` 0.20.1. I'd try to convert everything to gitoxide instead, but that's easier said than done.
1 parent c1101fb commit 68a0d9d

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dm-langserver/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ foldhash = "0.1.3"
2323

2424
[build-dependencies]
2525
chrono = "0.4.38"
26-
git2 = { version = "0.19.0", default-features = false }
26+
git2 = { version = "0.20.2", default-features = false }
2727
sha256 = { version = "1.5.0", default-features = false }
2828
ureq = "2.10.1"
2929

3030
[lints.rust]
31-
unexpected_cfgs = { level = "warn", check-cfg = [
32-
'cfg(auxtools_bundle)',
33-
'cfg(extools_bundle)',
34-
] }
31+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(auxtools_bundle)', 'cfg(extools_bundle)'] }

crates/dmdoc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
dreammaker = { path = "../dreammaker" }
1010
pulldown-cmark = "0.9.6"
1111
walkdir = "2.5.0"
12-
git2 = { version = "0.19.0", default-features = false }
12+
git2 = { version = "0.20.2", default-features = false }
1313
maud = "0.25.0"
1414
foldhash = "0.1.3"
1515

@@ -18,4 +18,4 @@ walkdir = "2.5.0"
1818

1919
[build-dependencies]
2020
chrono = "0.4.38"
21-
git2 = { version = "0.19.0", default-features = false }
21+
git2 = { version = "0.20.2", default-features = false }

crates/dmm-tools-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ foldhash = "0.1.3"
2121

2222
[build-dependencies]
2323
chrono = "0.4.38"
24-
git2 = { version = "0.19.0", default-features = false }
24+
git2 = { version = "0.20.2", default-features = false }

crates/dreamchecker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ foldhash = "0.1.3"
1111

1212
[build-dependencies]
1313
chrono = "0.4.38"
14-
git2 = { version = "0.19.0", default-features = false }
14+
git2 = { version = "0.20.2", default-features = false }

crates/spaceman-dmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ branch = "zenity"
3535

3636
[build-dependencies]
3737
chrono = "0.4.19"
38-
git2 = { version = "0.19.0", default-features = false }
38+
git2 = { version = "0.20.2", default-features = false }

0 commit comments

Comments
 (0)