From 8841e63e2d885fa48928a39120f7842f4ffbd625 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Aug 2021 05:25:23 +0000 Subject: [PATCH] build: bump thiserror from 1.0.26 to 1.0.28 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.26 to 1.0.28. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.26...1.0.28) --- 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 +- pci/Cargo.toml | 2 +- vfio_user/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c90937c9..0df1a26cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1057,18 +1057,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.26" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2" +checksum = "283d5230e63df9608ac7d9691adc1dfb6e701225436eb64d0b9a7f0a5a04f6ec" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.26" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745" +checksum = "fa3884228611f5cd3608e2d409bf7dce832e4eb3135e3f11addbd7e41bd68e71" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 2f9447158..e0d757a42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ option_parser = { path = "option_parser" } seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} serde_json = "1.0.67" signal-hook = "0.3.9" -thiserror = "1.0.26" +thiserror = "1.0.28" vmm = { path = "vmm" } vmm-sys-util = "0.8.0" vm-memory = "0.6.0" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 7836bb4fa..bd082b196 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -18,7 +18,7 @@ libc = "0.2.101" linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" serde = { version = "1.0.130", features = ["rc"] } -thiserror = "1.0.26" +thiserror = "1.0.28" versionize = "0.1.6" versionize_derive = "0.1.4" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-bitmap"] } diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index 5de1320a0..2ff6f8ec0 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -13,7 +13,7 @@ io-uring = "0.5.2" libc = "0.2.101" log = "0.4.14" qcow = { path = "../qcow" } -thiserror = "1.0.26" +thiserror = "1.0.28" versionize = "0.1.6" versionize_derive = "0.1.4" vhdx = { path = "../vhdx" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 757294a88..4da00bca2 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -13,7 +13,7 @@ tdx = [] [dependencies] anyhow = "1.0.43" epoll = "4.3.1" -thiserror = "1.0.26" +thiserror = "1.0.28" libc = "0.2.101" log = "0.4.14" kvm-ioctls = { version = "0.9.0", optional = true } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 772d992d6..b428f9300 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -13,7 +13,7 @@ vfio_user = { path = "../vfio_user" } vmm-sys-util = "0.8.0" libc = "0.2.101" log = "0.4.14" -thiserror = "1.0.26" +thiserror = "1.0.28" versionize = "0.1.6" versionize_derive = "0.1.4" vm-allocator = { path = "../vm-allocator" } diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index d0c8c8e28..2b72617d1 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -11,7 +11,7 @@ log = "0.4.14" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" -thiserror = "1.0.26" +thiserror = "1.0.28" vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = ">=0.3.1" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 349693c4f..f5cb1babb 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -10,7 +10,7 @@ kvm = ["vfio-ioctls/kvm"] [dependencies] anyhow = "1.0.43" -thiserror = "1.0.26" +thiserror = "1.0.28" serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 7e66137fb..d3b135df7 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] anyhow = "1.0.43" -thiserror = "1.0.26" +thiserror = "1.0.28" serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 758697488..833a703f6 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -40,7 +40,7 @@ serde = { version = "1.0.130", features = ["rc"] } serde_derive = "1.0.130" serde_json = "1.0.67" signal-hook = "0.3.9" -thiserror = "1.0.26" +thiserror = "1.0.28" uuid = "0.8.2" versionize = "0.1.6" versionize_derive = "0.1.4"