build: Bump thiserror from 1.0.39 to 1.0.40

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

---
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] 2023-05-23 23:58:01 +00:00
parent 1976157761
commit 681a30bd15
14 changed files with 41 additions and 30 deletions

45
Cargo.lock generated
View File

@ -94,7 +94,7 @@ dependencies = [
"argh_shared",
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -243,7 +243,7 @@ dependencies = [
"proc-macro2",
"quote",
"strsim",
"syn",
"syn 1.0.107",
]
[[package]]
@ -254,7 +254,7 @@ checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
dependencies = [
"darling_core",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -917,7 +917,7 @@ dependencies = [
"proc-macro2",
"quote",
"regex",
"syn",
"syn 1.0.107",
]
[[package]]
@ -985,9 +985,9 @@ dependencies = [
[[package]]
name = "quote"
version = "1.0.23"
version = "1.0.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
dependencies = [
"proc-macro2",
]
@ -1046,7 +1046,7 @@ checksum = "5704e2cda92fd54202f05430725317ba0ea7d0c96b246ca0a92e45177127ba3b"
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -1128,7 +1128,7 @@ checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d"
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -1161,7 +1161,7 @@ dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -1222,6 +1222,17 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79d9531f94112cfc3e4c8f5f02cb2b58f72c97b7efd85f70203cc6d8efda5927"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sys-info"
version = "0.9.1"
@ -1258,22 +1269,22 @@ dependencies = [
[[package]]
name = "thiserror"
version = "1.0.39"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.39"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn 2.0.12",
]
[[package]]
@ -1339,7 +1350,7 @@ dependencies = [
"quote",
"serde",
"serde_derive",
"syn",
"syn 1.0.107",
"versionize_derive",
"vmm-sys-util",
]
@ -1351,7 +1362,7 @@ source = "git+https://github.com/cloud-hypervisor/versionize_derive?branch=ch#ae
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]
[[package]]
@ -1877,5 +1888,5 @@ checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3"
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn 1.0.107",
]

View File

@ -42,7 +42,7 @@ option_parser = { path = "option_parser" }
seccompiler = "0.3.0"
serde_json = "1.0.96"
signal-hook = "0.3.15"
thiserror = "1.0.39"
thiserror = "1.0.40"
tpm = { path = "tpm"}
tracer = { path = "tracer" }
vmm = { path = "vmm" }

View File

@ -16,7 +16,7 @@ libc = "0.2.139"
linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] }
log = "0.4.17"
serde = { version = "1.0.156", features = ["rc", "derive"] }
thiserror = "1.0.39"
thiserror = "1.0.40"
uuid = "1.3.3"
versionize = "0.1.10"
versionize_derive = "0.1.4"

View File

@ -13,7 +13,7 @@ libc = "0.2.139"
log = "0.4.17"
qcow = { path = "../qcow" }
smallvec = "1.10.0"
thiserror = "1.0.39"
thiserror = "1.0.40"
versionize = "0.1.10"
versionize_derive = "0.1.4"
vhdx = { path = "../vhdx" }

View File

@ -13,7 +13,7 @@ byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" }
libc = "0.2.139"
log = "0.4.17"
thiserror = "1.0.39"
thiserror = "1.0.40"
tpm = { path = "../tpm" }
versionize = "0.1.10"
versionize_derive = "0.1.4"

View File

@ -13,7 +13,7 @@ tdx = []
[dependencies]
anyhow = "1.0.71"
byteorder = "1.4.3"
thiserror = "1.0.39"
thiserror = "1.0.40"
libc = "0.2.139"
log = "0.4.17"
kvm-ioctls = { version = "0.13.0", optional = true }

View File

@ -12,7 +12,7 @@ log = "0.4.17"
net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" }
serde = "1.0.156"
thiserror = "1.0.39"
thiserror = "1.0.40"
versionize = "0.1.10"
versionize_derive = "0.1.4"
virtio-bindings = "0.2.0"

View File

@ -21,7 +21,7 @@ vmm-sys-util = "0.11.0"
libc = "0.2.139"
log = "0.4.17"
serde = { version = "1.0.156", features = ["derive"] }
thiserror = "1.0.39"
thiserror = "1.0.40"
versionize = "0.1.10"
versionize_derive = "0.1.4"
vm-allocator = { path = "../vm-allocator" }

View File

@ -11,5 +11,5 @@ dirs = "5.0.0"
serde = { version = "1.0.156", features = ["rc", "derive"] }
serde_json = "1.0.96"
test_infra = { path = "../test_infra" }
thiserror = "1.0.39"
thiserror = "1.0.40"
wait-timeout = "0.2.0"

View File

@ -11,5 +11,5 @@ crc32c = "0.6.3"
libc = "0.2.139"
log = "0.4.17"
remain = "0.2.6"
thiserror = "1.0.39"
thiserror = "1.0.40"
uuid = { version = "1.3.3", features = ["v4"] }

View File

@ -25,7 +25,7 @@ seccompiler = "0.3.0"
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0.96"
serial_buffer = { path = "../serial_buffer" }
thiserror = "1.0.39"
thiserror = "1.0.40"
versionize = "0.1.10"
versionize_derive = "0.1.4"
vhost = { version = "0.6.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] }

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.71"
thiserror = "1.0.39"
thiserror = "1.0.40"
serde = { version = "1.0.156", features = ["rc", "derive"] }
serde_json = "1.0.96"
versionize = "0.1.10"

View File

@ -39,7 +39,7 @@ serde = { version = "1.0.156", features = ["rc", "derive"] }
serde_json = "1.0.96"
serial_buffer = { path = "../serial_buffer" }
signal-hook = "0.3.15"
thiserror = "1.0.39"
thiserror = "1.0.40"
tracer = { path = "../tracer" }
uuid = "1.3.3"
versionize = "0.1.10"