From 8803e4a2e7f8e9596b72f81d3c916390e5b10fbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 23:17:07 +0000 Subject: [PATCH] build: Bump thiserror from 1.0.61 to 1.0.62 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.61 to 1.0.62. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.61...1.0.62) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- api_client/Cargo.toml | 2 +- arch/Cargo.toml | 2 +- block/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- performance-metrics/Cargo.toml | 2 +- rate_limiter/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 836577c8e..7006be528 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2073,18 +2073,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index c69558b48..88e6bd5d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ option_parser = { path = "option_parser" } seccompiler = "0.4.0" serde_json = "1.0.115" signal-hook = "0.3.17" -thiserror = "1.0.60" +thiserror = "1.0.62" tpm = { path = "tpm" } tracer = { path = "tracer" } vm-memory = "0.14.1" diff --git a/api_client/Cargo.toml b/api_client/Cargo.toml index 95870d754..134c02bd0 100644 --- a/api_client/Cargo.toml +++ b/api_client/Cargo.toml @@ -5,5 +5,5 @@ name = "api_client" version = "0.1.0" [dependencies] -thiserror = "1.0.61" +thiserror = "1.0.62" vmm-sys-util = "0.12.1" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 0866362bd..74e6409c1 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ libc = "0.2.153" linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] } log = "0.4.22" serde = { version = "1.0.197", features = ["derive", "rc"] } -thiserror = "1.0.60" +thiserror = "1.0.62" uuid = "1.8.0" vm-memory = { version = "0.14.1", features = [ "backend-bitmap", diff --git a/block/Cargo.toml b/block/Cargo.toml index 14496d36c..d07045641 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -17,7 +17,7 @@ log = "0.4.22" remain = "0.2.13" serde = { version = "1.0.197", features = ["derive"] } smallvec = "1.13.2" -thiserror = "1.0.60" +thiserror = "1.0.62" uuid = { version = "1.8.0", features = ["v4"] } virtio-bindings = { version = "0.2.2", features = ["virtio-v5_0_0"] } virtio-queue = "0.12.0" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 27ab79e8f..9ed375697 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -16,7 +16,7 @@ libc = "0.2.153" log = "0.4.22" pci = { path = "../pci" } serde = { version = "1.0.197", features = ["derive"] } -thiserror = "1.0.60" +thiserror = "1.0.62" tpm = { path = "../tpm" } vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 668d11134..bc9c65915 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -29,7 +29,7 @@ serde = { version = "1.0.197", features = ["derive", "rc"] } serde_with = { version = "3.7.0", default-features = false, features = [ "macros", ] } -thiserror = "1.0.60" +thiserror = "1.0.62" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.14.1", features = [ "backend-atomic", diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 4dc95fd4a..362c5d364 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -12,7 +12,7 @@ log = "0.4.22" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } serde = { version = "1.0.197", features = ["derive"] } -thiserror = "1.0.60" +thiserror = "1.0.62" virtio-bindings = "0.2.2" virtio-queue = "0.12.0" vm-memory = { version = "0.14.1", features = [ diff --git a/pci/Cargo.toml b/pci/Cargo.toml index f5a54e310..60b442b02 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -16,7 +16,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.153" log = "0.4.22" serde = { version = "1.0.197", features = ["derive"] } -thiserror = "1.0.60" +thiserror = "1.0.62" vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = [ "fam-wrappers", ] } diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 15deb5c03..e97781c4b 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -11,5 +11,5 @@ dirs = "5.0.1" serde = { version = "1.0.197", features = ["derive", "rc"] } serde_json = "1.0.115" test_infra = { path = "../test_infra" } -thiserror = "1.0.60" +thiserror = "1.0.62" wait-timeout = "0.2.0" diff --git a/rate_limiter/Cargo.toml b/rate_limiter/Cargo.toml index c30a80d2b..bbd411063 100644 --- a/rate_limiter/Cargo.toml +++ b/rate_limiter/Cargo.toml @@ -7,5 +7,5 @@ version = "0.1.0" epoll = "4.3.3" libc = "0.2.153" log = "0.4.22" -thiserror = "1.0.60" +thiserror = "1.0.62" vmm-sys-util = "0.12.1" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 2ccf6844a..5b0f32478 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -28,7 +28,7 @@ serde_with = { version = "3.7.0", default-features = false, features = [ "macros", ] } serial_buffer = { path = "../serial_buffer" } -thiserror = "1.0.60" +thiserror = "1.0.62" vhost = { version = "0.11.0", features = [ "vhost-kern", "vhost-user-backend", diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 908ca29f6..c9bab84cb 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.81" hypervisor = { path = "../hypervisor" } serde = { version = "1.0.197", features = ["derive", "rc"] } -thiserror = "1.0.60" +thiserror = "1.0.62" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.14.1", features = ["backend-mmap"] } vmm-sys-util = "0.12.1" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 950209ee9..35182a844 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" anyhow = "1.0.81" serde = { version = "1.0.197", features = ["derive", "rc"] } serde_json = "1.0.115" -thiserror = "1.0.60" +thiserror = "1.0.62" vm-memory = { version = "0.14.1", features = [ "backend-atomic", "backend-mmap", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 46bd1ba26..492540f90 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -59,7 +59,7 @@ serde = { version = "1.0.197", features = ["derive", "rc"] } serde_json = "1.0.115" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.17" -thiserror = "1.0.60" +thiserror = "1.0.62" tracer = { path = "../tracer" } uuid = "1.8.0" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }