From 611e71826dbcd90838125632896afb9b16234b82 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Wed, 10 Nov 2021 10:11:10 +0100 Subject: [PATCH] deps: Downgrade anyhow Because anyhow version 1.0.46 has been yanked, let's move back to the previous version 1.0.45. Signed-off-by: Sebastien Boeuf --- 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 74b276772..02ba74181 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,9 +44,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.46" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3aa828229c44c0293dd7d4d2300bdfc4d2883ffdba934c069a6b968957a81f70" +checksum = "ee10e43ae4a853c0a3591d4e2ada1719e553be18199d9da9d4a83f5927c2f5c7" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index 9df274996..102b0a272 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor" lto = true [dependencies] -anyhow = "1.0.46" +anyhow = "1.0.45" api_client = { path = "api_client" } clap = { version = "2.33.3", features = ["wrap_help"] } epoll = "4.3.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index f73b2b251..aa2a9092e 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -11,7 +11,7 @@ tdx = [] [dependencies] acpi_tables = { path = "../acpi_tables", optional = true } -anyhow = "1.0.46" +anyhow = "1.0.45" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.107" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 7f31b7e5d..a85dec182 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] acpi_tables = { path = "../acpi_tables", optional = true } -anyhow = "1.0.46" +anyhow = "1.0.45" arch = { path = "../arch" } bitflags = "1.3.2" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 561163b57..19fa82c8a 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"] tdx = [] [dependencies] -anyhow = "1.0.46" +anyhow = "1.0.45" epoll = "4.3.1" thiserror = "1.0.30" libc = "0.2.107" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index fa4d81eb7..c19a23ac5 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.46" +anyhow = "1.0.45" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false } diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index 26f14e242..58277c15a 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2018" [dependencies] -anyhow = "1.0.46" +anyhow = "1.0.45" libc = "0.2.107" log = "0.4.14" serde = {version = ">=1.0.27", features = ["rc"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 5902b9ead..30ed6aedd 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -10,7 +10,7 @@ io_uring = ["block_util/io_uring"] mshv = [] [dependencies] -anyhow = "1.0.46" +anyhow = "1.0.45" arc-swap = "1.4.0" block_util = { path = "../block_util" } byteorder = "1.4.3" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 93145fc3f..30fe13c2c 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.46" +anyhow = "1.0.45" thiserror = "1.0.30" serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 056fb4828..e60ba2614 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2018" [dependencies] -anyhow = "1.0.46" +anyhow = "1.0.45" thiserror = "1.0.30" serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index f34b70d47..f8dde3436 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -16,7 +16,7 @@ tdx = ["arch/tdx", "hypervisor/tdx"] [dependencies] acpi_tables = { path = "../acpi_tables", optional = true } -anyhow = "1.0.46" +anyhow = "1.0.45" arc-swap = "1.4.0" arch = { path = "../arch" } bitflags = "1.3.2"