build: bump thiserror from 1.0.31 to 1.0.32

Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.31 to 1.0.32.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.31...1.0.32)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-08-04 14:42:53 +00:00
parent 3d947fafe5
commit a3bb459bff
12 changed files with 15 additions and 15 deletions

8
Cargo.lock generated
View File

@ -1125,18 +1125,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.31" version = "1.0.32"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.31" version = "1.0.32"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -28,7 +28,7 @@ option_parser = { path = "option_parser" }
seccompiler = "0.2.0" seccompiler = "0.2.0"
serde_json = "1.0.83" serde_json = "1.0.83"
signal-hook = "0.3.14" signal-hook = "0.3.14"
thiserror = "1.0.31" thiserror = "1.0.32"
vmm = { path = "vmm" } vmm = { path = "vmm" }
vmm-sys-util = "0.10.0" vmm-sys-util = "0.10.0"
vm-memory = "0.8.0" vm-memory = "0.8.0"

View File

@ -16,7 +16,7 @@ libc = "0.2.127"
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.17" log = "0.4.17"
serde = { version = "1.0.142", features = ["rc", "derive"] } serde = { version = "1.0.142", features = ["rc", "derive"] }
thiserror = "1.0.31" thiserror = "1.0.32"
uuid = "1.1.1" uuid = "1.1.1"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"

View File

@ -12,7 +12,7 @@ io-uring = "0.5.3"
libc = "0.2.127" libc = "0.2.127"
log = "0.4.17" log = "0.4.17"
qcow = { path = "../qcow" } qcow = { path = "../qcow" }
thiserror = "1.0.31" thiserror = "1.0.32"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
vhdx = { path = "../vhdx" } vhdx = { path = "../vhdx" }

View File

@ -13,7 +13,7 @@ tdx = []
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.59"
byteorder = "1.4.3" byteorder = "1.4.3"
thiserror = "1.0.31" thiserror = "1.0.32"
libc = "0.2.127" libc = "0.2.127"
log = "0.4.17" log = "0.4.17"
kvm-ioctls = { version = "0.11.0", optional = true } kvm-ioctls = { version = "0.11.0", optional = true }

View File

@ -19,7 +19,7 @@ vmm-sys-util = "0.10.0"
libc = "0.2.127" libc = "0.2.127"
log = "0.4.17" log = "0.4.17"
serde = { version="1.0.142", features=["derive"] } serde = { version="1.0.142", features=["derive"] }
thiserror = "1.0.31" thiserror = "1.0.32"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
vm-allocator = { path = "../vm-allocator" } vm-allocator = { path = "../vm-allocator" }

View File

@ -11,7 +11,7 @@ dirs = "4.0.0"
serde = { version = "1.0.142", features = ["rc", "derive"] } serde = { version = "1.0.142", features = ["rc", "derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
test_infra = { path = "../test_infra" } test_infra = { path = "../test_infra" }
thiserror = "1.0.31" thiserror = "1.0.32"
wait-timeout = "0.2.0" wait-timeout = "0.2.0"
[build-dependencies] [build-dependencies]

View File

@ -10,7 +10,7 @@ log = "0.4.17"
serde = {version = ">=1.0.27", features = ["rc"] } serde = {version = ">=1.0.27", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = ">=1.0.27"
serde_json = ">=1.0.9" serde_json = ">=1.0.9"
thiserror = "1.0.31" thiserror = "1.0.32"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = ">=0.3.1" vmm-sys-util = ">=0.3.1"

View File

@ -25,7 +25,7 @@ rate_limiter = { path = "../rate_limiter" }
seccompiler = "0.2.0" seccompiler = "0.2.0"
serde = { version="1.0.142", features=["derive"] } serde = { version="1.0.142", features=["derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
thiserror = "1.0.31" thiserror = "1.0.32"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
vhost = { version = "0.4.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] } vhost = { version = "0.4.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] }

View File

@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"]
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.59"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
thiserror = "1.0.31" thiserror = "1.0.32"
serde = { version = "1.0.142", features = ["rc", "derive"] } serde = { version = "1.0.142", features = ["rc", "derive"] }
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
vm-memory = { version = "0.8.0", features = ["backend-mmap"] } vm-memory = { version = "0.8.0", features = ["backend-mmap"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.59"
thiserror = "1.0.31" thiserror = "1.0.32"
serde = { version = "1.0.142", features = ["rc", "derive"] } serde = { version = "1.0.142", features = ["rc", "derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
versionize = "0.1.6" versionize = "0.1.6"

View File

@ -42,7 +42,7 @@ seccompiler = "0.2.0"
serde = { version = "1.0.142", features = ["rc", "derive"] } serde = { version = "1.0.142", features = ["rc", "derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
signal-hook = "0.3.14" signal-hook = "0.3.14"
thiserror = "1.0.31" thiserror = "1.0.32"
uuid = "1.1.2" uuid = "1.1.2"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"