From e93909acaa49c06f4f33d86b235c828c3e564273 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 02:45:31 +0000 Subject: [PATCH] :arrow_up: Update git2 requirement from ^0.20 to ^0.21 Updates the requirements on [git2](https://github.com/rust-lang/git2-rs) to permit the latest version. - [Changelog](https://github.com/rust-lang/git2-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/git2-rs/commits/git2-0.21.0) --- updated-dependencies: - dependency-name: git2 dependency-version: 0.21.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 45a1c85..8af1807 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = [ [dependencies] dirs = "^5.0" -git2 = { version = "^0.20", default-features = false } +git2 = { version = "^0.21", default-features = false } dialoguer = { version = "^0.12", optional = true } pest = "^2.3" pest_derive = "^2.3" @@ -29,7 +29,7 @@ regex = "^1.6" [dev-dependencies] pretty_assertions = "1.3" tempfile = "3.3" -git2 = { version = "^0.20" } +git2 = { version = "^0.21" } [features] default = ["ui4dialoguer"]