Update libgit2 to 1.9 (#15018)

This is a routine update of libgit2 to 1.9.

libgit2 1.9 release notes:
https://github.com/libgit2/libgit2/releases/tag/v1.9.0
git2:
https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md#0200---2025-01-04
This commit is contained in:
Weihang Lo 2025-01-05 02:59:36 +00:00 committed by GitHub
commit 12541d6e5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

12
Cargo.lock generated
View File

@ -1134,9 +1134,9 @@ dependencies = [
[[package]]
name = "git2"
version = "0.19.0"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724"
checksum = "3fda788993cc341f69012feba8bf45c0ba4f3291fcc08e214b4d5a7332d88aff"
dependencies = [
"bitflags 2.6.0",
"libc",
@ -1149,9 +1149,9 @@ dependencies = [
[[package]]
name = "git2-curl"
version = "0.20.0"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68ff14527a1c242320039b138376f8e0786697a1b7b172bc44f6efda3ab9079f"
checksum = "be8dcabbc09ece4d30a9aa983d5804203b7e2f8054a171f792deff59b56d31fa"
dependencies = [
"curl",
"git2",
@ -2290,9 +2290,9 @@ dependencies = [
[[package]]
name = "libgit2-sys"
version = "0.17.0+1.8.1"
version = "0.18.0+1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224"
checksum = "e1a117465e7e1597e8febea8bb0c410f1c7fb93b1e1cddf34363f8390367ffec"
dependencies = [
"cc",
"libc",

View File

@ -47,8 +47,8 @@ curl = "0.4.46"
curl-sys = "0.4.73"
filetime = "0.2.23"
flate2 = { version = "1.0.30", default-features = false, features = ["zlib"] }
git2 = "0.19.0"
git2-curl = "0.20.0"
git2 = "0.20.0"
git2-curl = "0.21.0"
gix = { version = "0.69.1", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "parallel", "dirwalk"] }
glob = "0.3.1"
handlebars = { version = "6.0.0", features = ["dir_source"] }
@ -64,7 +64,7 @@ itertools = "0.14.0"
jobserver = "0.1.32"
lazycell = "1.3.0"
libc = "0.2.155"
libgit2-sys = "0.17.0"
libgit2-sys = "0.18.0"
libloading = "0.8.5"
memchr = "2.7.4"
miow = "0.6.0"