mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-21 20:15:21 +00:00
build: Bump clap from 3.2.21 to 3.2.22
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.21 to 3.2.22. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/v3.2.22/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.2.21...v3.2.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:
parent
001f10d614
commit
18f1be0fac
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -130,9 +130,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "3.2.21"
|
||||
version = "3.2.22"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1ed5341b2301a26ab80be5cbdced622e80ed808483c52e45e3310a877d3b37d7"
|
||||
checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"bitflags",
|
||||
@ -141,7 +141,7 @@ dependencies = [
|
||||
"once_cell",
|
||||
"strsim",
|
||||
"termcolor",
|
||||
"terminal_size 0.1.17",
|
||||
"terminal_size",
|
||||
"textwrap",
|
||||
]
|
||||
|
||||
@ -1143,16 +1143,6 @@ dependencies = [
|
||||
"winapi-util",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "terminal_size"
|
||||
version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "terminal_size"
|
||||
version = "0.2.1"
|
||||
@ -1184,7 +1174,7 @@ version = "0.15.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
|
||||
dependencies = [
|
||||
"terminal_size 0.2.1",
|
||||
"terminal_size",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -20,7 +20,7 @@ opt-level = "s"
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
api_client = { path = "api_client" }
|
||||
clap = { version = "3.2.21", features = ["wrap_help","cargo"] }
|
||||
clap = { version = "3.2.22", features = ["wrap_help","cargo"] }
|
||||
epoll = "4.3.1"
|
||||
event_monitor = { path = "event_monitor" }
|
||||
hypervisor = { path = "hypervisor" }
|
||||
@ -36,7 +36,7 @@ vmm-sys-util = "0.10.0"
|
||||
vm-memory = "0.9.0"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "3.2.21", features = ["cargo"] }
|
||||
clap = { version = "3.2.22", features = ["cargo"] }
|
||||
|
||||
# List of patched crates
|
||||
[patch.crates-io]
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "3.2.21", features = ["wrap_help","cargo"] }
|
||||
clap = { version = "3.2.22", features = ["wrap_help","cargo"] }
|
||||
dirs = "4.0.0"
|
||||
serde = { version = "1.0.144", features = ["rc", "derive"] }
|
||||
serde_json = "1.0.85"
|
||||
@ -15,4 +15,4 @@ thiserror = "1.0.35"
|
||||
wait-timeout = "0.2.0"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "3.2.21", features = ["cargo"] }
|
||||
clap = { version = "3.2.22", features = ["cargo"] }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
block_util = { path = "../block_util" }
|
||||
clap = { version = "3.2.21", features = ["wrap_help","cargo"] }
|
||||
clap = { version = "3.2.22", features = ["wrap_help","cargo"] }
|
||||
env_logger = "0.9.0"
|
||||
epoll = "4.3.1"
|
||||
libc = "0.2.132"
|
||||
@ -21,4 +21,4 @@ vm-memory = "0.9.0"
|
||||
vmm-sys-util = "0.10.0"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "3.2.21", features = ["cargo"] }
|
||||
clap = { version = "3.2.22", features = ["cargo"] }
|
||||
|
@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "3.2.21", features = ["wrap_help","cargo"] }
|
||||
clap = { version = "3.2.22", features = ["wrap_help","cargo"] }
|
||||
env_logger = "0.9.0"
|
||||
epoll = "4.3.1"
|
||||
libc = "0.2.132"
|
||||
@ -19,4 +19,4 @@ vm-memory = "0.9.0"
|
||||
vmm-sys-util = "0.10.0"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "3.2.21", features = ["cargo"] }
|
||||
clap = { version = "3.2.22", features = ["cargo"] }
|
||||
|
@ -21,7 +21,7 @@ arc-swap = "1.5.1"
|
||||
arch = { path = "../arch" }
|
||||
bitflags = "1.3.2"
|
||||
block_util = { path = "../block_util" }
|
||||
clap = "3.2.21"
|
||||
clap = "3.2.22"
|
||||
devices = { path = "../devices" }
|
||||
epoll = "4.3.1"
|
||||
event_monitor = { path = "../event_monitor" }
|
||||
|
Loading…
x
Reference in New Issue
Block a user