From eeae63b4595fbf0cc69f62b6e9d9a79c543c4ac7 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 2 Jan 2025 15:39:35 +0000 Subject: [PATCH] build: Bump thiserror version Signed-off-by: Rob Bradford --- Cargo.lock | 30 +++++++++++++++--------------- 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 +- tpm/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 16 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c4d334702..ac613b3fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,7 +93,7 @@ checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" name = "api_client" version = "0.1.0" dependencies = [ - "thiserror 1.0.62", + "thiserror 2.0.6", "vmm-sys-util", ] @@ -115,7 +115,7 @@ dependencies = [ "linux-loader", "log", "serde", - "thiserror 1.0.62", + "thiserror 2.0.6", "uuid", "vm-fdt", "vm-memory", @@ -329,7 +329,7 @@ dependencies = [ "remain", "serde", "smallvec", - "thiserror 1.0.62", + "thiserror 2.0.6", "uuid", "virtio-bindings", "virtio-queue", @@ -439,7 +439,7 @@ dependencies = [ "serde_json", "signal-hook", "test_infra", - "thiserror 1.0.62", + "thiserror 2.0.6", "tpm", "tracer", "vm-memory", @@ -574,7 +574,7 @@ dependencies = [ "num_enum", "pci", "serde", - "thiserror 1.0.62", + "thiserror 2.0.6", "tpm", "vm-allocator", "vm-device", @@ -974,7 +974,7 @@ dependencies = [ "mshv-ioctls", "serde", "serde_with", - "thiserror 1.0.62", + "thiserror 2.0.6", "vfio-ioctls", "vm-memory", "vmm-sys-util", @@ -1298,7 +1298,7 @@ dependencies = [ "rate_limiter", "serde", "serde_json", - "thiserror 1.0.62", + "thiserror 2.0.6", "virtio-bindings", "virtio-queue", "vm-memory", @@ -1502,7 +1502,7 @@ dependencies = [ "libc", "log", "serde", - "thiserror 1.0.62", + "thiserror 2.0.6", "vfio-bindings", "vfio-ioctls", "vfio_user", @@ -1522,7 +1522,7 @@ dependencies = [ "serde", "serde_json", "test_infra", - "thiserror 1.0.62", + "thiserror 2.0.6", "wait-timeout", ] @@ -1740,7 +1740,7 @@ dependencies = [ "epoll", "libc", "log", - "thiserror 1.0.62", + "thiserror 2.0.6", "vmm-sys-util", ] @@ -2127,7 +2127,7 @@ dependencies = [ "libc", "log", "net_gen", - "thiserror 1.0.62", + "thiserror 2.0.6", "vmm-sys-util", ] @@ -2370,7 +2370,7 @@ dependencies = [ "serde_json", "serde_with", "serial_buffer", - "thiserror 1.0.62", + "thiserror 2.0.6", "vhost", "virtio-bindings", "virtio-queue", @@ -2410,7 +2410,7 @@ dependencies = [ "anyhow", "hypervisor", "serde", - "thiserror 1.0.62", + "thiserror 2.0.6", "vfio-ioctls", "vm-memory", "vmm-sys-util", @@ -2440,7 +2440,7 @@ dependencies = [ "anyhow", "serde", "serde_json", - "thiserror 1.0.62", + "thiserror 2.0.6", "vm-memory", ] @@ -2495,7 +2495,7 @@ dependencies = [ "serde_json", "serial_buffer", "signal-hook", - "thiserror 1.0.62", + "thiserror 2.0.6", "tracer", "uuid", "vfio-ioctls", diff --git a/Cargo.toml b/Cargo.toml index 0462a8ac1..b3bc0d2a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ option_parser = { path = "option_parser" } seccompiler = { workspace = true } serde_json = "1.0.120" signal-hook = "0.3.17" -thiserror = "1.0.62" +thiserror = "2.0.6" tpm = { path = "tpm" } tracer = { path = "tracer" } vm-memory = { workspace = true } diff --git a/api_client/Cargo.toml b/api_client/Cargo.toml index 8fae05bff..ce306ef53 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.62" +thiserror = "2.0.6" vmm-sys-util = { workspace = true } diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 669f1510e..a0eefa8e0 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -18,7 +18,7 @@ libc = "0.2.167" linux-loader = { workspace = true, features = ["bzimage", "elf", "pe"] } log = "0.4.22" serde = { version = "1.0.208", features = ["derive", "rc"] } -thiserror = "1.0.62" +thiserror = "2.0.6" uuid = "1.8.0" vm-memory = { workspace = true, features = ["backend-bitmap", "backend-mmap"] } vm-migration = { path = "../vm-migration" } diff --git a/block/Cargo.toml b/block/Cargo.toml index b5adae040..70826209a 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -17,7 +17,7 @@ log = "0.4.22" remain = "0.2.14" serde = { version = "1.0.208", features = ["derive"] } smallvec = "1.13.2" -thiserror = "1.0.62" +thiserror = "2.0.6" uuid = { version = "1.8.0", features = ["v4"] } virtio-bindings = { workspace = true, features = ["virtio-v5_0_0"] } virtio-queue = { workspace = true } diff --git a/devices/Cargo.toml b/devices/Cargo.toml index bc8ab5039..2eb17d064 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -17,7 +17,7 @@ log = "0.4.22" num_enum = "0.7.2" pci = { path = "../pci" } serde = { version = "1.0.208", features = ["derive"] } -thiserror = "1.0.62" +thiserror = "2.0.6" tpm = { path = "../tpm" } vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 1729dd90a..2644f0f93 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -33,7 +33,7 @@ serde = { version = "1.0.208", features = ["derive", "rc"] } serde_with = { version = "3.9.0", default-features = false, features = [ "macros", ] } -thiserror = "1.0.62" +thiserror = "2.0.6" vfio-ioctls = { workspace = true, default-features = false } vm-memory = { workspace = true, features = [ "backend-atomic", diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 3ed1e7192..1dab3d9a2 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.208", features = ["derive"] } -thiserror = "1.0.62" +thiserror = "2.0.6" virtio-bindings = { workspace = true } virtio-queue = { workspace = true } vm-memory = { workspace = true, features = [ diff --git a/pci/Cargo.toml b/pci/Cargo.toml index f8b8b3e54..35b9e7193 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -16,7 +16,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.167" log = "0.4.22" serde = { version = "1.0.208", features = ["derive"] } -thiserror = "1.0.62" +thiserror = "2.0.6" vfio-bindings = { workspace = true, features = ["fam-wrappers"] } vfio-ioctls = { workspace = true, default-features = false } vfio_user = { workspace = true } diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index db243bee3..984a476f5 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -11,5 +11,5 @@ dirs = "5.0.1" serde = { version = "1.0.208", features = ["derive", "rc"] } serde_json = "1.0.120" test_infra = { path = "../test_infra" } -thiserror = "1.0.62" +thiserror = "2.0.6" wait-timeout = "0.2.0" diff --git a/rate_limiter/Cargo.toml b/rate_limiter/Cargo.toml index 1a7e1518f..dc4a0c7d2 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.167" log = "0.4.22" -thiserror = "1.0.62" +thiserror = "2.0.6" vmm-sys-util = { workspace = true } diff --git a/tpm/Cargo.toml b/tpm/Cargo.toml index 5083037b5..9c9606ebc 100644 --- a/tpm/Cargo.toml +++ b/tpm/Cargo.toml @@ -11,5 +11,5 @@ byteorder = "1.5.0" libc = "0.2.153" log = "0.4.21" net_gen = { path = "../net_gen" } -thiserror = "1.0.58" +thiserror = "2.0.6" vmm-sys-util = { workspace = true } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 8553d627d..3aad50567 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -29,7 +29,7 @@ serde_with = { version = "3.9.0", default-features = false, features = [ "macros", ] } serial_buffer = { path = "../serial_buffer" } -thiserror = "1.0.62" +thiserror = "2.0.6" vhost = { workspace = true, features = [ "vhost-kern", "vhost-user-backend", diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index d0534ba88..0f084b339 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.94" hypervisor = { path = "../hypervisor" } serde = { version = "1.0.208", features = ["derive", "rc"] } -thiserror = "1.0.62" +thiserror = "2.0.6" vfio-ioctls = { workspace = true, default-features = false } vm-memory = { workspace = true, features = ["backend-mmap"] } vmm-sys-util = { workspace = true } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index f6f1f9dfa..80be8e847 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -8,5 +8,5 @@ version = "0.1.0" anyhow = "1.0.94" serde = { version = "1.0.208", features = ["derive", "rc"] } serde_json = "1.0.120" -thiserror = "1.0.62" +thiserror = "2.0.6" vm-memory = { workspace = true, features = ["backend-atomic", "backend-mmap"] } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 080e1e6c5..5c149e268 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -66,7 +66,7 @@ serde = { version = "1.0.208", features = ["derive", "rc"] } serde_json = "1.0.120" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.17" -thiserror = "1.0.62" +thiserror = "2.0.6" tracer = { path = "../tracer" } uuid = "1.8.0" vfio-ioctls = { workspace = true, default-features = false }