From e710e21744599b2bb7526f17a7d68d16c2f04875 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Oct 2022 23:31:23 +0000 Subject: [PATCH] build: Bump anyhow from 1.0.65 to 1.0.66 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.65 to 1.0.66. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.65...1.0.66) --- 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 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d9aaa46b..bf567eba4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,9 +20,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.65" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" +checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index 29219c70c..0260d35b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ codegen-units = 1 opt-level = "s" [dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" api_client = { path = "api_client" } clap = { version = "4.0.17", features = ["wrap_help","cargo","string"] } epoll = "4.3.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 50d6ae9b4..a9dd87774 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -9,7 +9,7 @@ default = [] tdx = [] [dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.135" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 306edb664..3ce829789 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.65" +anyhow = "1.0.66" arch = { path = "../arch" } bitflags = "1.3.2" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index f56fb3038..2e547d1ba 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"] tdx = [] [dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" byteorder = "1.4.3" thiserror = "1.0.37" libc = "0.2.135" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 4df25daa6..1538b6fe3 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.65" +anyhow = "1.0.66" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 0f75e5dee..68c324a2a 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" default = [] [dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" arc-swap = "1.5.1" block_util = { path = "../block_util" } byteorder = "1.4.3" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 798fb791b..5ff498dcb 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.65" +anyhow = "1.0.66" hypervisor = { path = "../hypervisor" } thiserror = "1.0.37" serde = { version = "1.0.145", features = ["rc", "derive"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index f01eb9dfe..d1e34888a 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.65" +anyhow = "1.0.66" thiserror = "1.0.37" serde = { version = "1.0.145", features = ["rc", "derive"] } serde_json = "1.0.87" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index d070360b1..0afee02fb 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -14,7 +14,7 @@ tracing = ["tracer/tracing"] [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.65" +anyhow = "1.0.66" arc-swap = "1.5.1" arch = { path = "../arch" } bitflags = "1.3.2"