build: Bump clap from 4.0.29 to 4.0.32

Bumps [clap](https://github.com/clap-rs/clap) from 4.0.29 to 4.0.32.
- [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.29...v4.0.32)

---
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] 2023-01-06 23:04:03 +00:00
parent 160ea00d6b
commit 67340c5295
6 changed files with 7 additions and 7 deletions

4
Cargo.lock generated
View File

@ -119,9 +119,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.0.29"
version = "4.0.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d"
checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
dependencies = [
"bitflags",
"clap_lex",

View File

@ -26,7 +26,7 @@ strip = true
[dependencies]
anyhow = "1.0.68"
api_client = { path = "api_client" }
clap = { version = "4.0.29", features = ["wrap_help","cargo","string"] }
clap = { version = "4.0.32", features = ["wrap_help","cargo","string"] }
epoll = "4.3.1"
event_monitor = { path = "event_monitor" }
hypervisor = { path = "hypervisor" }

View File

@ -6,7 +6,7 @@ edition = "2021"
build = "build.rs"
[dependencies]
clap = { version = "4.0.29", features = ["wrap_help"] }
clap = { version = "4.0.32", features = ["wrap_help"] }
dirs = "4.0.0"
serde = { version = "1.0.151", features = ["rc", "derive"] }
serde_json = "1.0.89"

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
block_util = { path = "../block_util" }
clap = { version = "4.0.29", features = ["wrap_help"] }
clap = { version = "4.0.32", features = ["wrap_help"] }
env_logger = "0.10.0"
epoll = "4.3.1"
libc = "0.2.139"

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2021"
[dependencies]
clap = { version = "4.0.29", features = ["wrap_help","cargo"] }
clap = { version = "4.0.32", features = ["wrap_help","cargo"] }
env_logger = "0.10.0"
epoll = "4.3.1"
libc = "0.2.139"

View File

@ -19,7 +19,7 @@ arc-swap = "1.5.1"
arch = { path = "../arch" }
bitflags = "1.3.2"
block_util = { path = "../block_util" }
clap = "4.0.29"
clap = "4.0.32"
devices = { path = "../devices" }
epoll = "4.3.1"
event_monitor = { path = "../event_monitor" }