cargo: bump clap from 4.0.9 to 4.0.10

Bumps [clap](https://github.com/clap-rs/clap) from 4.0.9 to 4.0.10.
- [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.9...v4.0.10)

---
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-06 16:07:58 +00:00 committed by Martin von Zweigbergk
parent 45c4734b52
commit f250a52a72
2 changed files with 8 additions and 8 deletions

14
Cargo.lock generated
View file

@ -218,9 +218,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.0.9"
version = "4.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30607dd93c420c6f1f80b544be522a0238a7db35e6a12968d28910983fee0df0"
checksum = "3b1a0a4208c6c483b952ad35c6eed505fc13b46f08f631b81e828084a9318d74"
dependencies = [
"atty",
"bitflags",
@ -237,14 +237,14 @@ version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11cba7abac9b56dfe2f035098cdb3a43946f276e6db83b72c4e692343f9aab9a"
dependencies = [
"clap 4.0.9",
"clap 4.0.10",
]
[[package]]
name = "clap_derive"
version = "4.0.9"
version = "4.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a307492e1a34939f79d3b6b9650bd2b971513cd775436bf2b78defeb5af00b"
checksum = "db342ce9fda24fb191e2ed4e102055a4d381c1086a06630174cd8da8d5d917ce"
dependencies = [
"heck",
"proc-macro-error",
@ -277,7 +277,7 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5d5cd261a1d5601621a7ee4870f6e7f3f1ba3fc901d867f5201b36691e7efbe"
dependencies = [
"clap 4.0.9",
"clap 4.0.10",
"roff",
]
@ -672,7 +672,7 @@ dependencies = [
"assert_cmd",
"atty",
"chrono",
"clap 4.0.9",
"clap 4.0.10",
"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.9", features = ["derive", "deprecated"] }
clap = { version = "4.0.10", features = ["derive", "deprecated"] }
clap_complete = "4.0.2"
clap_mangen = "0.2.2"
config = { version = "0.13.2", default-features = false, features = ["toml"] }