build: bump anyhow from 1.0.45 to 1.0.48

Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.45 to 1.0.48.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.45...1.0.48)

---
updated-dependencies:
- dependency-name: anyhow
  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] 2021-11-22 19:41:04 +00:00
parent ef1ac5c670
commit 1bcb07b68b
11 changed files with 12 additions and 12 deletions

4
Cargo.lock generated
View File

@ -44,9 +44,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.45" version = "1.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee10e43ae4a853c0a3591d4e2ada1719e553be18199d9da9d4a83f5927c2f5c7" checksum = "62e1f47f7dc0422027a4e370dd4548d4d66b26782e513e98dca1e689e058a80e"
[[package]] [[package]]
name = "api_client" name = "api_client"

View File

@ -13,7 +13,7 @@ homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor"
lto = true lto = true
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
api_client = { path = "api_client" } api_client = { path = "api_client" }
clap = { version = "2.33.3", features = ["wrap_help"] } clap = { version = "2.33.3", features = ["wrap_help"] }
epoll = "4.3.1" epoll = "4.3.1"

View File

@ -11,7 +11,7 @@ tdx = []
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0.45" anyhow = "1.0.48"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.107" libc = "0.2.107"

View File

@ -6,7 +6,7 @@ edition = "2018"
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0.45" anyhow = "1.0.48"
arch = { path = "../arch" } arch = { path = "../arch" }
bitflags = "1.3.2" bitflags = "1.3.2"
byteorder = "1.4.3" byteorder = "1.4.3"

View File

@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"]
tdx = [] tdx = []
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
epoll = "4.3.1" epoll = "4.3.1"
thiserror = "1.0.30" thiserror = "1.0.30"
libc = "0.2.107" libc = "0.2.107"

View File

@ -10,7 +10,7 @@ kvm = ["vfio-ioctls/kvm"]
mshv = ["vfio-ioctls/mshv"] mshv = ["vfio-ioctls/mshv"]
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false }

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
libc = "0.2.107" libc = "0.2.107"
log = "0.4.14" log = "0.4.14"
serde = {version = ">=1.0.27", features = ["rc"] } serde = {version = ">=1.0.27", features = ["rc"] }

View File

@ -10,7 +10,7 @@ io_uring = ["block_util/io_uring"]
mshv = [] mshv = []
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
arc-swap = "1.5.0" arc-swap = "1.5.0"
block_util = { path = "../block_util" } block_util = { path = "../block_util" }
byteorder = "1.4.3" byteorder = "1.4.3"

View File

@ -10,7 +10,7 @@ kvm = ["vfio-ioctls/kvm"]
mshv = ["vfio-ioctls/mshv"] mshv = ["vfio-ioctls/mshv"]
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
thiserror = "1.0.30" thiserror = "1.0.30"
serde = { version = "1.0.130", features = ["rc"] } serde = { version = "1.0.130", features = ["rc"] }
serde_derive = "1.0.130" serde_derive = "1.0.130"

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.45" anyhow = "1.0.48"
thiserror = "1.0.30" thiserror = "1.0.30"
serde = { version = "1.0.130", features = ["rc"] } serde = { version = "1.0.130", features = ["rc"] }
serde_derive = "1.0.130" serde_derive = "1.0.130"

View File

@ -16,7 +16,7 @@ tdx = ["arch/tdx", "hypervisor/tdx"]
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0.45" anyhow = "1.0.48"
arc-swap = "1.5.0" arc-swap = "1.5.0"
arch = { path = "../arch" } arch = { path = "../arch" }
bitflags = "1.3.2" bitflags = "1.3.2"