From 04cfeeed0690bf3d3a6a0dbcf9cb5a2202bf55cc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Jan 2025 13:27:04 +0000
Subject: [PATCH] chore(deps): Bump clap from 4.5.21 to 4.5.26 (#673)
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.21 to 4.5.26.
Release notes
Sourced from clap's
releases.
v4.5.26
[4.5.26] - 2025-01-09
Fixes
- (error) Reduce binary size with the
suggestions
feature
v4.5.25
[4.5.25] - 2025-01-09
Fixes
- (help) Reduce binary size
v4.5.24
[4.5.24] - 2025-01-07
Fixes
- (parser) Correctly handle defaults with
ignore_errors(true)
and when a suggestion is provided for
an unknown argument
v4.5.23
[4.5.23] - 2024-12-05
Fixes
- (parser) When check
allow_negative_numbers
,
allow E
again
v4.5.22
[4.5.22] - 2024-12-03
Fixes
- (assert) Catch bugs with arguments requiring themself
Changelog
Sourced from clap's
changelog.
[4.5.26] - 2025-01-09
Fixes
- (error) Reduce binary size with the
suggestions
feature
[4.5.25] - 2025-01-09
Fixes
- (help) Reduce binary size
[4.5.24] - 2025-01-07
Fixes
- (parser) Correctly handle defaults with
ignore_errors(true)
and when a suggestion is provided for
an unknown argument
[4.5.23] - 2024-12-05
Fixes
- (parser) When check
allow_negative_numbers
,
allow E
again
[4.5.22] - 2024-12-03
Fixes
- (assert) Catch bugs with arguments requiring themself
Commits
df1efca
chore: Release
d48bef6
docs: Update changelog
6b7aa3d
Merge pull request #5628
from mart-mihkel/complete_hyphen
57b6cb8
refactor(complete): Simplify engine::complete
fbec05e
refactor(complete): Fix typo in hyhpen
b7cfbdc
feat(complete): Native support for hyphen values
1d97c29
test(complete): Test cases for allow_hyphen_values
64e3790
chore: Release
1cf50c7
docs: Update changelog
085143d
Merge pull request #5722
from epage/sort
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.5.21&new-version=4.5.26)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 6ad9ad5c..f9374d78 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -405,9 +405,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.5.21"
+version = "4.5.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
+checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
dependencies = [
"clap_builder",
"clap_derive",
@@ -415,9 +415,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.5.21"
+version = "4.5.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
+checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
dependencies = [
"anstream",
"anstyle",
@@ -427,9 +427,9 @@ dependencies = [
[[package]]
name = "clap_derive"
-version = "4.5.18"
+version = "4.5.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
+checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
dependencies = [
"heck",
"proc-macro2",
@@ -439,9 +439,9 @@ dependencies = [
[[package]]
name = "clap_lex"
-version = "0.7.2"
+version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
+checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
[[package]]
name = "colorchoice"