Skip to content

Commit

Permalink
Merge branch 'adjustments-for-cargo'
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jun 6, 2023
2 parents 9a9fa96 + 9010f58 commit 04f011c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gix-revision/src/graph/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub mod lookup {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("There was an error looking up a commit")]
#[error(transparent)]
Find(#[from] crate::graph::lookup::Error),
#[error(transparent)]
ToOwned(#[from] crate::graph::commit::to_owned::Error),
Expand Down
3 changes: 2 additions & 1 deletion gix/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ pub mod collate {
Error::Fetch(
crate::remote::fetch::Error::PackThreads(_)
| crate::remote::fetch::Error::PackIndexVersion(_)
| crate::remote::fetch::Error::RemovePackKeepFile { .. },
| crate::remote::fetch::Error::RemovePackKeepFile { .. }
| crate::remote::fetch::Error::Negotiate(_),
) => true,
_ => false,
}
Expand Down

0 comments on commit 04f011c

Please sign in to comment.