diff --git a/Cargo.lock b/Cargo.lock index c058aaed4..18205be90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -959,18 +959,18 @@ checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" [[package]] name = "serde" -version = "1.0.142" +version = "1.0.143" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" +checksum = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.142" +version = "1.0.143" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" +checksum = "d3d8e8de557aee63c26b85b947f5e59b690d0454c753f3adeb5cd7835ab88391" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 47a9641ed..ed0b1a4a9 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -15,7 +15,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.127" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.17" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } thiserror = "1.0.32" uuid = "1.1.2" versionize = "0.1.6" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index d409187a6..a6cef8e2a 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] libc = "0.2.127" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } serde_json = "1.0.83" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 33fb5fae9..51d7791c7 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.11.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true } mshv-bindings = { git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true} -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } serde_with = { version = "2.0.0", default-features = false, features = ["macros"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 6226d74bf..ffe065a4b 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.127" log = "0.4.17" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.142" +serde = "1.0.143" versionize = "0.1.6" versionize_derive = "0.1.4" virtio-bindings = "0.1.0" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 7a64dd29f..1e3ba3fc9 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -18,7 +18,7 @@ vfio_user = { path = "../vfio_user" } vmm-sys-util = "0.10.0" libc = "0.2.127" log = "0.4.17" -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.143", features = ["derive"] } thiserror = "1.0.32" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 08bce342e..56c492b62 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] clap = { version = "3.2.16", features = ["wrap_help","cargo"] } dirs = "4.0.0" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } serde_json = "1.0.83" test_infra = { path = "../test_infra" } thiserror = "1.0.32" diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index 325169f11..53db8a7c6 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] libc = "0.2.127" log = "0.4.17" -serde = { version = "1.0.142", features = ["rc"] } +serde = { version = "1.0.143", features = ["rc"] } serde_derive = "1.0.142" serde_json = "1.0.83" thiserror = "1.0.32" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index de5aa6350..5d6865a89 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.2.0" -serde = { version = "1.0.142", features = ["derive"] } +serde = { version = "1.0.143", features = ["derive"] } serde_json = "1.0.83" thiserror = "1.0.32" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 7c85e4c13..5cde56d96 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.60" hypervisor = { path = "../hypervisor" } thiserror = "1.0.32" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap"] } vmm-sys-util = "0.10.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 95f3f1060..d6ac424f8 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.60" thiserror = "1.0.32" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } serde_json = "1.0.83" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 600db36f1..6e10a9d9c 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -39,7 +39,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" -serde = { version = "1.0.142", features = ["rc", "derive"] } +serde = { version = "1.0.143", features = ["rc", "derive"] } serde_json = "1.0.83" signal-hook = "0.3.14" thiserror = "1.0.32"