diff --git a/Cargo.lock b/Cargo.lock index 23401c961..af88dd994 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1113,18 +1113,18 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" [[package]] name = "serde" -version = "1.0.152" +version = "1.0.156" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.156" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 826ff127a..ebb59c587 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -15,7 +15,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.139" linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] } log = "0.4.17" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } thiserror = "1.0.39" uuid = "1.3.0" versionize = "0.1.10" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 5bc36b8fc..0e6c8b781 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] libc = "0.2.139" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index c21096296..3803bfb10 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.13.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.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.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_with = { version = "2.3.2", default-features = false, features = ["macros"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 1fb7945db..63f8785e5 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.139" log = "0.4.17" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.151" +serde = "1.0.156" thiserror = "1.0.39" versionize = "0.1.10" versionize_derive = "0.1.4" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 98433547b..0ce3765ca 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -20,7 +20,7 @@ vfio_user = { git = "https://github.com/rust-vmm/vfio-user", branch = "main" } vmm-sys-util = "0.11.0" libc = "0.2.139" log = "0.4.17" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.156", features = ["derive"] } thiserror = "1.0.39" versionize = "0.1.10" versionize_derive = "0.1.4" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 48e6ec83f..f0b02a13f 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ build = "../build.rs" [dependencies] argh = "0.1.9" dirs = "5.0.0" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" test_infra = { path = "../test_infra" } thiserror = "1.0.39" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 911fa4f8f..d32d6d58a 100644 --- a/test_infra/Cargo.toml +++ b/test_infra/Cargo.toml @@ -9,7 +9,7 @@ dirs = "5.0.0" epoll = "4.3.1" libc = "0.2.139" once_cell = "1.17.1" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" ssh2 = { version = "0.9.4", features = ["vendored-openssl"] } vmm-sys-util = "0.11.0" diff --git a/tracer/Cargo.toml b/tracer/Cargo.toml index 248f264a2..3ec7b4a28 100644 --- a/tracer/Cargo.toml +++ b/tracer/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" libc = "0.2.139" log = "0.4.17" once_cell = "1.17.1" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" [features] diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index e699449f1..956b5b06e 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.3.0" -serde = { version = "1.0.151", features = ["derive"] } +serde = { version = "1.0.156", features = ["derive"] } serde_json = "1.0.96" serial_buffer = { path = "../serial_buffer" } thiserror = "1.0.39" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index ef7a5edb8..e1e1f53ae 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.70" hypervisor = { path = "../hypervisor" } thiserror = "1.0.39" -serde = { version = "1.0.151", features = ["rc", "derive"] } +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"] } vmm-sys-util = "0.11.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 5b84db9ea..03bf352c0 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.70" thiserror = "1.0.39" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" versionize = "0.1.10" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 73ab915da..5f7975a2d 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -35,7 +35,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.3.0" -serde = { version = "1.0.151", features = ["rc", "derive"] } +serde = { version = "1.0.156", features = ["rc", "derive"] } serde_json = "1.0.96" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.15"