From ddc3f194aa315dd6e013a4d36209ad6fbab1908e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 23:40:48 +0000 Subject: [PATCH] build: Bump anyhow from 1.0.81 to 1.0.86 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.81 to 1.0.86. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.81...1.0.86) --- 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 c23efe984..e903366c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,9 +85,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.81" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index cb455caa2..aba775daf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ inherits = "release" strip = false [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.86" api_client = { path = "api_client" } clap = { version = "4.5.4", features = ["string"] } dhat = { version = "0.3.3", optional = true } diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 70bc61fbb..4aa574494 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -11,7 +11,7 @@ sev_snp = [] tdx = [] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.86" byteorder = "1.5.0" hypervisor = { path = "../hypervisor" } libc = "0.2.153" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 9ed375697..5a7be2615 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main" } -anyhow = "1.0.81" +anyhow = "1.0.86" arch = { path = "../arch" } bitflags = "2.5.0" byteorder = "1.5.0" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index bc9c65915..475e3cf36 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -12,7 +12,7 @@ sev_snp = ["igvm", "igvm_defs"] tdx = [] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.86" byteorder = "1.5.0" igvm = { version = "0.3.1", optional = true } igvm_defs = { version = "0.3.1", optional = true } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 60b442b02..d413675d3 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.81" +anyhow = "1.0.86" byteorder = "1.5.0" hypervisor = { path = "../hypervisor" } libc = "0.2.153" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 1968f3a3f..ed581e56d 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -9,7 +9,7 @@ default = [] sev_snp = [] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.86" arc-swap = "1.7.1" block = { path = "../block" } byteorder = "1.5.0" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index c9bab84cb..ad9dce403 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.81" +anyhow = "1.0.86" hypervisor = { path = "../hypervisor" } serde = { version = "1.0.197", features = ["derive", "rc"] } thiserror = "1.0.62" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 6457dce95..4caafee08 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -5,7 +5,7 @@ name = "vm-migration" version = "0.1.0" [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.86" serde = { version = "1.0.197", features = ["derive", "rc"] } serde_json = "1.0.120" thiserror = "1.0.62" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 5f6c73e43..fe74e5488 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -25,7 +25,7 @@ tracing = ["tracer/tracing"] [dependencies] acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main" } -anyhow = "1.0.81" +anyhow = "1.0.86" arc-swap = "1.7.1" arch = { path = "../arch" } bitflags = "2.5.0"