From 3c8e280bf1d8806cd891abc47443bcaa3ebdf77c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Apr 2022 23:42:36 +0000 Subject: [PATCH] build: bump anyhow from 1.0.56 to 1.0.57 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.56 to 1.0.57. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.56...1.0.57) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- arch/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- vfio_user/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e925a904..90b8863b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,9 +20,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" +checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index a709aace8..0078ced22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ rust-version = "1.56" lto = true [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" api_client = { path = "api_client" } clap = { version = "3.1.10", features = ["wrap_help","cargo"] } epoll = "4.3.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 61dae8d0f..b095b937e 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -10,7 +10,7 @@ tdx = [] [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.56" +anyhow = "1.0.57" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.124" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index f02d1571c..ac9f4cb13 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.56" +anyhow = "1.0.57" arch = { path = "../arch" } bitflags = "1.3.2" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 18194c9fa..2a42e7a1f 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"] tdx = [] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" epoll = "4.3.1" thiserror = "1.0.30" libc = "0.2.124" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index cdce12530..65a3a5004 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -10,7 +10,7 @@ kvm = ["vfio-ioctls/kvm"] mshv = ["vfio-ioctls/mshv"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index 602bfa56c..1fafbe7a5 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2021" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" libc = "0.2.124" log = "0.4.16" serde = {version = ">=1.0.27", features = ["rc"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index f9abcc2b6..a09495375 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -9,7 +9,7 @@ default = [] mshv = [] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" arc-swap = "1.5.0" block_util = { path = "../block_util" } byteorder = "1.4.3" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 362bb2081..4f2717a53 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -10,7 +10,7 @@ kvm = ["vfio-ioctls/kvm"] mshv = ["vfio-ioctls/mshv"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" thiserror = "1.0.30" serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.136" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 05738873d..dec6098d7 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2021" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" thiserror = "1.0.30" serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.136" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index c10eed275..729e3eaec 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -16,7 +16,7 @@ tdx = ["arch/tdx", "hypervisor/tdx"] [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.56" +anyhow = "1.0.57" arc-swap = "1.5.0" arch = { path = "../arch" } bitflags = "1.3.2"