Skip to content

Commit 64e3a91

Browse files
committed
Bump git2 from 0.15.0 to 0.17.2
1 parent e3210d9 commit 64e3a91

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.

src/git/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tempfile = "3.7.0"
2222
thiserror = "1.0.44"
2323

2424
[dependencies.git2]
25-
version = "=0.15.0"
25+
version = "0.17.2"
2626
default-features = false
2727
features = []
2828

src/git/src/file_mode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ impl FileMode {
1616
pub(crate) const fn from(file_mode: git2::FileMode) -> Self {
1717
match file_mode {
1818
git2::FileMode::Commit | git2::FileMode::Tree | git2::FileMode::Unreadable => Self::Other,
19-
git2::FileMode::Blob => Self::Normal,
19+
git2::FileMode::Blob | git2::FileMode::BlobGroupWritable => Self::Normal,
2020
git2::FileMode::BlobExecutable => Self::Executable,
2121
git2::FileMode::Link => Self::Link,
2222
}

0 commit comments

Comments
 (0)