build(deps): update clap-verbosity-flag requirement from 2.2 to 3.0 (#2251)

* build(deps): update clap-verbosity-flag requirement from 2.2 to 3.0

Updates the requirements on [clap-verbosity-flag](https://github.com/clap-rs/clap-verbosity-flag) to permit the latest version.
- [Changelog](https://github.com/clap-rs/clap-verbosity-flag/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap-verbosity-flag/compare/v2.2.0...v3.0.0)

---
updated-dependencies:
- dependency-name: clap-verbosity-flag
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Add required feature

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lars Eggert <lars@eggert.org>
This commit is contained in:
dependabot[bot] 2024-11-26 15:47:43 +02:00 коммит произвёл GitHub
Родитель e9936ddac0
Коммит 5fe0c89dbe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 3 удалений

4
Cargo.lock сгенерированный
Просмотреть файл

@ -184,9 +184,9 @@ dependencies = [
[[package]]
name = "clap-verbosity-flag"
version = "2.2.0"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb9b20c0dd58e4c2e991c8d203bbeb76c11304d1011659686b5b644bc29aa478"
checksum = "42dcf89bb9d98abb02e9a4a8ef1cce429e547a803460a8245c399860985d5281"
dependencies = [
"clap",
"log",

Просмотреть файл

@ -28,7 +28,7 @@ workspace = true
[dependencies]
# Not used in Firefox, so we can be liberal with dependency versions
clap = { version = "4.4", default-features = false, features = ["std", "help", "usage", "error-context", "suggestions", "derive"] }
clap-verbosity-flag = { version = "2.2", default-features = false }
clap-verbosity-flag = { version = "3.0", default-features = false, features = ["log"] }
futures = { version = "0.3", default-features = false, features = ["alloc"] }
hex = { version = "0.4", default-features = false, features = ["std"] }
log = { workspace = true }