Skip to content

Commit

Permalink
chore(deps): update git2 to use libgit2 1.9 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenrui333 authored Jan 12, 2025
1 parent 9836ef9 commit 7a19549
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 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 @@ -34,7 +34,7 @@ clap_complete = "4.4.10"
constcat = "0.5.0"
curl = "0.4.46"
fmutex = "0.1.0"
git2 = "0.19.0"
git2 = "0.20.0"
globwalk = "0.9.1"
home = "0.5.9"
indexmap = { version = "2.4.0", features = ["rayon", "serde"] }
Expand Down
2 changes: 1 addition & 1 deletion src/context/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub trait ToMessage {
fn to_message(&self, ctx: &Context) -> Message<'_>;
}

impl<'a> fmt::Display for Message<'a> {
impl fmt::Display for Message<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Message::Borrowed(b) => fmt::Display::fmt(b, f),
Expand Down

0 comments on commit 7a19549

Please sign in to comment.