From a20041ba68ae1dadee2b6ec2a83a7e80d927fcd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Sep 2021 23:12:21 +0000 Subject: [PATCH] build: bump thiserror from 1.0.28 to 1.0.29 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.28 to 1.0.29. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.28...1.0.29) --- 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 c3cde70fd..745429b92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1057,18 +1057,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.28" +version = "1.0.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "283d5230e63df9608ac7d9691adc1dfb6e701225436eb64d0b9a7f0a5a04f6ec" +checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.28" +version = "1.0.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa3884228611f5cd3608e2d409bf7dce832e4eb3135e3f11addbd7e41bd68e71" +checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 97dc71a70..e064853d7 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.10" -thiserror = "1.0.28" +thiserror = "1.0.29" 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 7adb1d7f4..5ad8f4570 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.28" +thiserror = "1.0.29" 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 2ff6f8ec0..415bfe745 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.28" +thiserror = "1.0.29" versionize = "0.1.6" versionize_derive = "0.1.4" vhdx = { path = "../vhdx" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 7859e86f8..70974cccf 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.28" +thiserror = "1.0.29" 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 848746dc9..9b9290277 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.28" +thiserror = "1.0.29" 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 a29176839..0b33fa47f 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.28" +thiserror = "1.0.29" vm-memory = { version = "0.6.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 cb521e06c..b30775c47 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.28" +thiserror = "1.0.29" 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 d3b135df7..3bea48acc 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.28" +thiserror = "1.0.29" 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 24950e838..7a9eb8d7f 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.10" -thiserror = "1.0.28" +thiserror = "1.0.29" uuid = "0.8.2" versionize = "0.1.6" versionize_derive = "0.1.4"