Skip to content

Commit

Permalink
chore(deps): update rust crate gix to 0.62.0 [security]
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 15, 2024
1 parent 9f8adff commit 1a111ab
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 38 deletions.
73 changes: 37 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ filetime = "0.2.23"
flate2 = { version = "1.0.28", default-features = false, features = ["zlib"] }
git2 = "0.18.3"
git2-curl = "0.19.0"
gix = { version = "0.61.0", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "revision", "parallel", "dirwalk"] }
gix = { version = "0.62.0", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "revision", "parallel", "dirwalk"] }
glob = "0.3.1"
handlebars = { version = "5.1.2", features = ["dir_source"] }
hex = "0.4.3"
Expand Down
3 changes: 2 additions & 1 deletion src/cargo/sources/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use cargo_util::paths;
use filetime::FileTime;
use gix::bstr::{BString, ByteVec};
use gix::dir::entry::Status;
use gix::index::entry::Stage;
use ignore::gitignore::GitignoreBuilder;
use tracing::{debug, trace, warn};
use walkdir::WalkDir;
Expand Down Expand Up @@ -533,7 +534,7 @@ impl<'gctx> PathSource<'gctx> {
.iter()
.filter(|entry| {
// probably not needed as conflicts prevent this to run, but let's be explicit.
entry.stage() == 0
entry.stage() == Stage::Unconflicted
})
.map(|entry| {
(
Expand Down

0 comments on commit 1a111ab

Please sign in to comment.