From a229afbc24b466c1b91e990917b9195ac58afef5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 23:15:30 +0000 Subject: [PATCH] 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] --- Cargo.lock | 8 ++++---- arch/Cargo.toml | 2 +- block/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- event_monitor/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- performance-metrics/Cargo.toml | 2 +- test_infra/Cargo.toml | 2 +- tracer/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25a6b5a54..18df75775 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1879,18 +1879,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.203" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" +checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.203" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" +checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 41c55c3ed..ba6d9dccc 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.155" linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] } log = "0.4.22" -serde = { version = "1.0.197", features = ["derive", "rc"] } +serde = { version = "1.0.208", features = ["derive", "rc"] } thiserror = "1.0.62" uuid = "1.8.0" vm-memory = { version = "0.14.1", features = [ diff --git a/block/Cargo.toml b/block/Cargo.toml index a9c1e4ac9..4c5db67f3 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -15,7 +15,7 @@ io-uring = { version = "0.6.3", optional = true } libc = "0.2.155" log = "0.4.22" remain = "0.2.14" -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } smallvec = "1.13.2" thiserror = "1.0.62" uuid = { version = "1.8.0", features = ["v4"] } diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 96e7c395c..b9766759d 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -16,7 +16,7 @@ libc = "0.2.155" log = "0.4.22" num_enum = "0.7.2" pci = { path = "../pci" } -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } thiserror = "1.0.62" tpm = { path = "../tpm" } vm-allocator = { path = "../vm-allocator" } diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index f2b992905..adee1893f 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -8,5 +8,5 @@ version = "0.1.0" flume = "0.11.0" libc = "0.2.155" 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" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 509f45bdb..e8bba15ad 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -25,7 +25,7 @@ mshv-bindings = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", feat "with-serde", ], 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 = [ "macros", ] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index f2724199a..d30182ace 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.155" log = "0.4.22" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } thiserror = "1.0.62" virtio-bindings = "0.2.2" virtio-queue = "0.12.0" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index fb742ef75..7ffc2398d 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -15,7 +15,7 @@ byteorder = "1.5.0" hypervisor = { path = "../hypervisor" } libc = "0.2.155" log = "0.4.22" -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } thiserror = "1.0.62" vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = [ "fam-wrappers", diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 094ac3f4d..4779f2a46 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" [dependencies] clap = { version = "4.5.4", features = ["wrap_help"] } 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" test_infra = { path = "../test_infra" } thiserror = "1.0.62" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 7b73dd0f5..5fa5465ff 100644 --- a/test_infra/Cargo.toml +++ b/test_infra/Cargo.toml @@ -9,7 +9,7 @@ dirs = "5.0.1" epoll = "4.3.3" libc = "0.2.155" 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" ssh2 = { version = "0.9.4", features = ["vendored-openssl"] } vmm-sys-util = "0.12.1" diff --git a/tracer/Cargo.toml b/tracer/Cargo.toml index 42f14c67d..4a1bda92d 100644 --- a/tracer/Cargo.toml +++ b/tracer/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" libc = "0.2.155" log = "0.4.22" 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" [features] diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 6c5497ccc..a96c71bd3 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -22,7 +22,7 @@ net_util = { path = "../net_util" } pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.4.0" -serde = { version = "1.0.197", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0.120" serde_with = { version = "3.9.0", default-features = false, features = [ "macros", diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index ad9dce403..cfabff975 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"] [dependencies] anyhow = "1.0.86" hypervisor = { path = "../hypervisor" } -serde = { version = "1.0.197", features = ["derive", "rc"] } +serde = { version = "1.0.208", features = ["derive", "rc"] } thiserror = "1.0.62" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.14.1", features = ["backend-mmap"] } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 4caafee08..48a75a9dc 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] 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" thiserror = "1.0.62" vm-memory = { version = "0.14.1", features = [ diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index e22d1a0e4..c423fae31 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -62,7 +62,7 @@ pci = { path = "../pci" } range_map_vec = { version = "0.2.0", optional = true } rate_limiter = { path = "../rate_limiter" } 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" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.17"