build: Bump serde from 1.0.203 to 1.0.208

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.203 to 1.0.208.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.203...v1.0.208)

---
updated-dependencies:
- dependency-name: serde
  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] 2024-08-16 23:15:30 +00:00 committed by cloud-hypervisor-bot
parent fd561f4034
commit a229afbc24
15 changed files with 18 additions and 18 deletions

8
Cargo.lock generated
View File

@ -1879,18 +1879,18 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.203" version = "1.0.208"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.203" version = "1.0.208"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" }
libc = "0.2.155" libc = "0.2.155"
linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] } linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] }
log = "0.4.22" log = "0.4.22"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
thiserror = "1.0.62" thiserror = "1.0.62"
uuid = "1.8.0" uuid = "1.8.0"
vm-memory = { version = "0.14.1", features = [ vm-memory = { version = "0.14.1", features = [

View File

@ -15,7 +15,7 @@ io-uring = { version = "0.6.3", optional = true }
libc = "0.2.155" libc = "0.2.155"
log = "0.4.22" log = "0.4.22"
remain = "0.2.14" remain = "0.2.14"
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.208", features = ["derive"] }
smallvec = "1.13.2" smallvec = "1.13.2"
thiserror = "1.0.62" thiserror = "1.0.62"
uuid = { version = "1.8.0", features = ["v4"] } uuid = { version = "1.8.0", features = ["v4"] }

View File

@ -16,7 +16,7 @@ libc = "0.2.155"
log = "0.4.22" log = "0.4.22"
num_enum = "0.7.2" num_enum = "0.7.2"
pci = { path = "../pci" } pci = { path = "../pci" }
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.208", features = ["derive"] }
thiserror = "1.0.62" thiserror = "1.0.62"
tpm = { path = "../tpm" } tpm = { path = "../tpm" }
vm-allocator = { path = "../vm-allocator" } vm-allocator = { path = "../vm-allocator" }

View File

@ -8,5 +8,5 @@ version = "0.1.0"
flume = "0.11.0" flume = "0.11.0"
libc = "0.2.155" libc = "0.2.155"
once_cell = "1.19.0" once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"

View File

@ -25,7 +25,7 @@ mshv-bindings = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", feat
"with-serde", "with-serde",
], optional = true } ], optional = true }
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", optional = true }
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_with = { version = "3.9.0", default-features = false, features = [ serde_with = { version = "3.9.0", default-features = false, features = [
"macros", "macros",
] } ] }

View File

@ -11,7 +11,7 @@ libc = "0.2.155"
log = "0.4.22" log = "0.4.22"
net_gen = { path = "../net_gen" } net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" } rate_limiter = { path = "../rate_limiter" }
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.208", features = ["derive"] }
thiserror = "1.0.62" thiserror = "1.0.62"
virtio-bindings = "0.2.2" virtio-bindings = "0.2.2"
virtio-queue = "0.12.0" virtio-queue = "0.12.0"

View File

@ -15,7 +15,7 @@ byteorder = "1.5.0"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.155" libc = "0.2.155"
log = "0.4.22" log = "0.4.22"
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.208", features = ["derive"] }
thiserror = "1.0.62" thiserror = "1.0.62"
vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = [ vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = [
"fam-wrappers", "fam-wrappers",

View File

@ -8,7 +8,7 @@ version = "0.1.0"
[dependencies] [dependencies]
clap = { version = "4.5.4", features = ["wrap_help"] } clap = { version = "4.5.4", features = ["wrap_help"] }
dirs = "5.0.1" dirs = "5.0.1"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"
test_infra = { path = "../test_infra" } test_infra = { path = "../test_infra" }
thiserror = "1.0.62" thiserror = "1.0.62"

View File

@ -9,7 +9,7 @@ dirs = "5.0.1"
epoll = "4.3.3" epoll = "4.3.3"
libc = "0.2.155" libc = "0.2.155"
once_cell = "1.19.0" once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"
ssh2 = { version = "0.9.4", features = ["vendored-openssl"] } ssh2 = { version = "0.9.4", features = ["vendored-openssl"] }
vmm-sys-util = "0.12.1" vmm-sys-util = "0.12.1"

View File

@ -8,7 +8,7 @@ version = "0.1.0"
libc = "0.2.155" libc = "0.2.155"
log = "0.4.22" log = "0.4.22"
once_cell = "1.19.0" once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"
[features] [features]

View File

@ -22,7 +22,7 @@ net_util = { path = "../net_util" }
pci = { path = "../pci" } pci = { path = "../pci" }
rate_limiter = { path = "../rate_limiter" } rate_limiter = { path = "../rate_limiter" }
seccompiler = "0.4.0" seccompiler = "0.4.0"
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.120" serde_json = "1.0.120"
serde_with = { version = "3.9.0", default-features = false, features = [ serde_with = { version = "3.9.0", default-features = false, features = [
"macros", "macros",

View File

@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"]
[dependencies] [dependencies]
anyhow = "1.0.86" anyhow = "1.0.86"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
thiserror = "1.0.62" thiserror = "1.0.62"
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.14.1", features = ["backend-mmap"] } vm-memory = { version = "0.14.1", features = ["backend-mmap"] }

View File

@ -6,7 +6,7 @@ version = "0.1.0"
[dependencies] [dependencies]
anyhow = "1.0.86" anyhow = "1.0.86"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"
thiserror = "1.0.62" thiserror = "1.0.62"
vm-memory = { version = "0.14.1", features = [ vm-memory = { version = "0.14.1", features = [

View File

@ -62,7 +62,7 @@ pci = { path = "../pci" }
range_map_vec = { version = "0.2.0", optional = true } range_map_vec = { version = "0.2.0", optional = true }
rate_limiter = { path = "../rate_limiter" } rate_limiter = { path = "../rate_limiter" }
seccompiler = "0.4.0" seccompiler = "0.4.0"
serde = { version = "1.0.197", features = ["derive", "rc"] } serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120" serde_json = "1.0.120"
serial_buffer = { path = "../serial_buffer" } serial_buffer = { path = "../serial_buffer" }
signal-hook = "0.3.17" signal-hook = "0.3.17"