From c71cb00a5a02eebae01ec76516b8b667b08afa00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 22:39:02 +0000 Subject: [PATCH] build: Bump anyhow from 1.0.75 to 1.0.79 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.75 to 1.0.79. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.79) --- 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 3fff4a786..1056f8273 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,9 +84,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.75" +version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index 73e2601a4..8dde69191 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ strip = false debug = true [dependencies] -anyhow = "1.0.75" +anyhow = "1.0.79" api_client = { path = "api_client" } clap = { version = "4.4.7", features = ["string"] } dhat = { version = "0.3.2", optional = true } diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 8f4b2f218..573705c5a 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -10,7 +10,7 @@ sev_snp = [] tdx = [] [dependencies] -anyhow = "1.0.75" +anyhow = "1.0.79" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.147" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 6151f025d..eb9a074fb 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main" } -anyhow = "1.0.75" +anyhow = "1.0.79" arch = { path = "../arch" } bitflags = "2.4.1" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index f5a8fbf83..87e4e9ee7 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -12,7 +12,7 @@ sev_snp = ["igvm_parser", "igvm_defs"] tdx = [] [dependencies] -anyhow = "1.0.75" +anyhow = "1.0.79" byteorder = "1.4.3" igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm_defs", optional = true } igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm", optional = true } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index c834bfd52..f98b56030 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.75" +anyhow = "1.0.79" 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 aa4fce151..ab5fef51d 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" default = [] [dependencies] -anyhow = "1.0.75" +anyhow = "1.0.79" arc-swap = "1.5.1" block = { path = "../block" } byteorder = "1.4.3" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 7522de4a3..776a0d11e 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.75" +anyhow = "1.0.79" hypervisor = { path = "../hypervisor" } thiserror = "1.0.52" serde = { version = "1.0.168", features = ["rc", "derive"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index f9340ce28..c706e7333 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.75" +anyhow = "1.0.79" thiserror = "1.0.52" serde = { version = "1.0.168", features = ["rc", "derive"] } serde_json = "1.0.109" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 36e568e51..5393800e3 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -18,7 +18,7 @@ tracing = ["tracer/tracing"] [dependencies] acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main" } -anyhow = "1.0.75" +anyhow = "1.0.79" arc-swap = "1.5.1" arch = { path = "../arch" } bitflags = "2.4.1"