diff --git a/Cargo.lock b/Cargo.lock index 095745fe0..da7df4d3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,9 +20,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" +checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" [[package]] name = "api_client" diff --git a/Cargo.toml b/Cargo.toml index 1b699fc44..d1233615c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ rust-version = "1.60" lto = true [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.59" api_client = { path = "api_client" } clap = { version = "3.2.16", features = ["wrap_help","cargo"] } epoll = "4.3.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 9fe86c822..65b46b52a 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -9,7 +9,7 @@ default = [] tdx = [] [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.59" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } libc = "0.2.126" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index bbf7e8450..f51841837 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.58" +anyhow = "1.0.59" arch = { path = "../arch" } bitflags = "1.3.2" byteorder = "1.4.3" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 5434c0cda..e9e055384 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["mshv-ioctls", "mshv-bindings"] tdx = [] [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.59" byteorder = "1.4.3" thiserror = "1.0.31" libc = "0.2.126" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index bc9a71a16..fb6c5e4a4 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.58" +anyhow = "1.0.59" 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 2a9c6009e..3c7ccc960 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -9,7 +9,7 @@ default = [] mshv = [] [dependencies] -anyhow = "1.0.58" +anyhow = "1.0.59" 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 f27ed5c6f..37c0e6591 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.58" +anyhow = "1.0.59" hypervisor = { path = "../hypervisor" } thiserror = "1.0.31" serde = { version = "1.0.141", features = ["rc", "derive"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 64e78bd7b..ac2f9f3d2 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.58" +anyhow = "1.0.59" thiserror = "1.0.31" serde = { version = "1.0.141", features = ["rc", "derive"] } serde_json = "1.0.82" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 1932b6be8..15ab9d0b1 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -17,7 +17,7 @@ tdx = ["arch/tdx", "hypervisor/tdx"] [dependencies] acpi_tables = { path = "../acpi_tables" } -anyhow = "1.0.58" +anyhow = "1.0.59" arc-swap = "1.5.1" arch = { path = "../arch" } bitflags = "1.3.2"