cargo: bump clap from 4.0.18 to 4.0.22

Bumps [clap](https://github.com/clap-rs/clap) from 4.0.18 to 4.0.22.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.18...v4.0.22)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-11-08 15:42:29 +00:00 committed by Martin von Zweigbergk
parent 5b5ab1fb3e
commit 3958363777
2 changed files with 8 additions and 8 deletions

14
Cargo.lock generated
View file

@ -229,9 +229,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.0.18"
version = "4.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "335867764ed2de42325fafe6d18b8af74ba97ee0c590fa016f157535b42ab04b"
checksum = "91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682"
dependencies = [
"atty",
"bitflags",
@ -248,14 +248,14 @@ version = "4.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0fba905b035a30d25c1b585bf1171690712fbb0ad3ac47214963aa4acc36c"
dependencies = [
"clap 4.0.18",
"clap 4.0.22",
]
[[package]]
name = "clap_derive"
version = "4.0.18"
version = "4.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16a1b0f6422af32d5da0c58e2703320f379216ee70198241c84173a8c5ac28f3"
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
dependencies = [
"heck",
"proc-macro-error",
@ -288,7 +288,7 @@ version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa149477df7854a1497db0def32b8a65bf98f72a14d04ac75b01938285d83420"
dependencies = [
"clap 4.0.18",
"clap 4.0.22",
"roff",
]
@ -711,7 +711,7 @@ dependencies = [
"assert_cmd",
"atty",
"chrono",
"clap 4.0.18",
"clap 4.0.22",
"clap_complete",
"clap_mangen",
"config",

View file

@ -36,7 +36,7 @@ members = ["lib"]
[dependencies]
atty = "0.2.14"
chrono = { version = "0.4.22", default-features = false, features = ["std", "clock"] }
clap = { version = "4.0.18", features = ["derive", "deprecated"] }
clap = { version = "4.0.22", features = ["derive", "deprecated"] }
clap_complete = "4.0.5"
clap_mangen = "0.2.4"
config = { version = "0.13.2", default-features = false, features = ["toml"] }