cargo: bump clap from 4.0.6 to 4.0.8

Bumps [clap](https://github.com/clap-rs/clap) from 4.0.6 to 4.0.8.
- [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.6...v4.0.8)

---
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-10-03 15:37:34 +00:00 committed by Martin von Zweigbergk
parent 53fc4a179c
commit c352deaa59
2 changed files with 8 additions and 8 deletions

14
Cargo.lock generated
View file

@ -235,9 +235,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.0.6"
version = "4.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "182551ae46bbac6f6cd2bb47bbb0c8fc75019662726e04a32b5526b0617f9c9d"
checksum = "5840cd9093aabeabf7fd932754c435b7674520fc3ddc935c397837050f0f1e4b"
dependencies = [
"atty",
"bitflags",
@ -254,14 +254,14 @@ version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11cba7abac9b56dfe2f035098cdb3a43946f276e6db83b72c4e692343f9aab9a"
dependencies = [
"clap 4.0.6",
"clap 4.0.8",
]
[[package]]
name = "clap_derive"
version = "4.0.6"
version = "4.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ec849bb9a00d02bad08cde6155663294f2a4b32ce6e3e69abf23d14927c632a"
checksum = "92289ffc6fb4a85d85c246ddb874c05a87a2e540fb6ad52f7ca07c8c1e1840b1"
dependencies = [
"heck",
"proc-macro-error",
@ -294,7 +294,7 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5d5cd261a1d5601621a7ee4870f6e7f3f1ba3fc901d867f5201b36691e7efbe"
dependencies = [
"clap 4.0.6",
"clap 4.0.8",
"roff",
]
@ -714,7 +714,7 @@ dependencies = [
"assert_cmd",
"atty",
"chrono",
"clap 4.0.6",
"clap 4.0.8",
"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.6", features = ["derive", "deprecated"] }
clap = { version = "4.0.8", features = ["derive", "deprecated"] }
clap_complete = "4.0.2"
clap_mangen = "0.2.2"
config = { version = "0.13.2", features = ["toml"] }