From 41e22a7d03f28920aa7eea5cb91241ef9364a217 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Sep 2022 02:02:26 +0000 Subject: [PATCH] build: bump thiserror from 1.0.32 to 1.0.33 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.32 to 1.0.33. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.32...1.0.33) --- 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 +- arch/Cargo.toml | 2 +- block_util/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- performance-metrics/Cargo.toml | 2 +- vfio_user/Cargo.toml | 2 +- vhdx/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75458b82b..60b11c383 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1130,18 +1130,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.32" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" +checksum = "3d0a539a918745651435ac7db7a18761589a94cd7e94cd56999f828bf73c8a57" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.32" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" +checksum = "c251e90f708e16c49a16f4917dc2131e75222b72edfa9cb7f7c58ae56aae0c09" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 9281b04de..ad13f8199 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ option_parser = { path = "option_parser" } seccompiler = "0.2.0" serde_json = "1.0.85" signal-hook = "0.3.14" -thiserror = "1.0.32" +thiserror = "1.0.33" vmm = { path = "vmm" } vmm-sys-util = "0.10.0" vm-memory = "0.8.0" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index ad29c8871..5868fec1a 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -16,7 +16,7 @@ libc = "0.2.132" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.17" serde = { version = "1.0.144", features = ["rc", "derive"] } -thiserror = "1.0.32" +thiserror = "1.0.33" uuid = "1.1.2" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index e0f4000f6..d8dd727ef 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -12,7 +12,7 @@ io-uring = "0.5.3" libc = "0.2.132" log = "0.4.17" qcow = { path = "../qcow" } -thiserror = "1.0.32" +thiserror = "1.0.33" versionize = "0.1.6" versionize_derive = "0.1.4" vhdx = { path = "../vhdx" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 1e9f35c61..7c7b82014 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -13,7 +13,7 @@ tdx = [] [dependencies] anyhow = "1.0.63" byteorder = "1.4.3" -thiserror = "1.0.32" +thiserror = "1.0.33" libc = "0.2.132" log = "0.4.17" kvm-ioctls = { version = "0.11.0", optional = true } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 632c94e3d..622de7aed 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -12,7 +12,7 @@ log = "0.4.17" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } serde = "1.0.144" -thiserror = "1.0.32" +thiserror = "1.0.33" versionize = "0.1.6" versionize_derive = "0.1.4" virtio-bindings = "0.1.0" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 49d48a991..926d1f861 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -19,7 +19,7 @@ vmm-sys-util = "0.10.0" libc = "0.2.132" log = "0.4.17" serde = { version = "1.0.144", features = ["derive"] } -thiserror = "1.0.32" +thiserror = "1.0.33" versionize = "0.1.6" versionize_derive = "0.1.4" vm-allocator = { path = "../vm-allocator" } diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 439df1de3..cfbe1e050 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -11,7 +11,7 @@ dirs = "4.0.0" serde = { version = "1.0.144", features = ["rc", "derive"] } serde_json = "1.0.85" test_infra = { path = "../test_infra" } -thiserror = "1.0.32" +thiserror = "1.0.33" wait-timeout = "0.2.0" [build-dependencies] diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index a06ba702e..a918904af 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -10,7 +10,7 @@ log = "0.4.17" serde = { version = "1.0.144", features = ["rc"] } serde_derive = "1.0.142" serde_json = "1.0.85" -thiserror = "1.0.32" +thiserror = "1.0.33" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = "0.10.0" diff --git a/vhdx/Cargo.toml b/vhdx/Cargo.toml index 921cc43ef..8844d393b 100644 --- a/vhdx/Cargo.toml +++ b/vhdx/Cargo.toml @@ -11,5 +11,5 @@ crc32c = "0.6.3" libc = "0.2.132" log = "0.4.17" remain = "0.2.4" -thiserror = "1.0.32" +thiserror = "1.0.33" uuid = { version = "1.1.2", features = ["v4"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 704e0d3d1..e95e19b0f 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -25,7 +25,7 @@ seccompiler = "0.2.0" serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" serial_buffer = { path = "../serial_buffer" } -thiserror = "1.0.32" +thiserror = "1.0.33" versionize = "0.1.6" versionize_derive = "0.1.4" vhost = { version = "0.4.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] } diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 58f2790c6..c98f1a9ff 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"] [dependencies] anyhow = "1.0.63" hypervisor = { path = "../hypervisor" } -thiserror = "1.0.32" +thiserror = "1.0.33" serde = { version = "1.0.144", features = ["rc", "derive"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index c25fdb9ef..c15ebc0e3 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0.63" -thiserror = "1.0.32" +thiserror = "1.0.33" serde = { version = "1.0.144", features = ["rc", "derive"] } serde_json = "1.0.85" versionize = "0.1.6" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 499045bc5..747252ee2 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -43,7 +43,7 @@ serde = { version = "1.0.144", features = ["rc", "derive"] } serde_json = "1.0.85" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.14" -thiserror = "1.0.32" +thiserror = "1.0.33" uuid = "1.1.2" versionize = "0.1.6" versionize_derive = "0.1.4"