From 43227cd5c47e760f770bbe656b86bf8ff666c2b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 00:15:20 +0000 Subject: [PATCH] build: Bump anyhow from 1.0.68 to 1.0.69 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.68 to 1.0.69. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.68...1.0.69) --- 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 826e0519f..e0a1cb040 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,9 +35,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" +checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index ebea85e6f..12caf3c69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ strip = false debug = true [dependencies] -anyhow = "1.0.68" +anyhow = "1.0.69" api_client = { path = "api_client" } argh = "0.1.9" dhat = { version = "0.3.2", optional = true } diff --git a/arch/Cargo.toml b/arch/Cargo.toml index a4aae9ead..449ae2524 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -9,7 +9,7 @@ default = [] tdx = [] [dependencies] -anyhow = "1.0.68" +anyhow = "1.0.69" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.139" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index b118add46..f4ad74dd8 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.68" +anyhow = "1.0.69" arch = { path = "../arch" } bitflags = "1.3.2" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 53aaaf3a9..c651077a0 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"] tdx = [] [dependencies] -anyhow = "1.0.68" +anyhow = "1.0.69" byteorder = "1.4.3" thiserror = "1.0.38" libc = "0.2.139" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 00d2466c5..95187a793 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.68" +anyhow = "1.0.69" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = ["fam-wrappers"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index dc05be238..a7748440c 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" default = [] [dependencies] -anyhow = "1.0.68" +anyhow = "1.0.69" 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 9dc89fe08..2111da02b 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.68" +anyhow = "1.0.69" hypervisor = { path = "../hypervisor" } thiserror = "1.0.38" serde = { version = "1.0.151", features = ["rc", "derive"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 29c5b74c5..bb193ee11 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.68" +anyhow = "1.0.69" thiserror = "1.0.38" serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index ea2c52781..e7890ced6 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.68" +anyhow = "1.0.69" arc-swap = "1.5.1" arch = { path = "../arch" } bitflags = "1.3.2"