diff --git a/Cargo.lock b/Cargo.lock index f15eb1144..5195fe415 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1629,18 +1629,18 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" [[package]] name = "serde" -version = "1.0.163" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" +checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.163" +version = "1.0.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" +checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index b7208cbce..08db21377 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -15,7 +15,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.139" linux-loader = { version = "0.9.0", features = ["elf", "bzimage", "pe"] } log = "0.4.17" -serde = { version = "1.0.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } thiserror = "1.0.40" uuid = "1.3.4" versionize = "0.1.10" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index f16bfa86c..4fc314cb2 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.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } serde_json = "1.0.96" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 5d0c5656c..9106b85ff 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.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } serde_with = { version = "3.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.11.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index c9e1da1b5..bd34deb31 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.163" +serde = "1.0.164" thiserror = "1.0.40" versionize = "0.1.10" versionize_derive = "0.1.4" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 58e13731c..ab5d3d0d3 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.163", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } thiserror = "1.0.40" versionize = "0.1.10" versionize_derive = "0.1.4" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index ccf9dcff5..5ca9812b0 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.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } serde_json = "1.0.96" test_infra = { path = "../test_infra" } thiserror = "1.0.40" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 2539af8f5..99b22cdee 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.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", 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 bf6bee11b..75c6e8731 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.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } serde_json = "1.0.96" [features] diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index c6638a1de..3d81fea94 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.163", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" serial_buffer = { path = "../serial_buffer" } thiserror = "1.0.40" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 800279494..f3bf646ea 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.71" hypervisor = { path = "../hypervisor" } thiserror = "1.0.40" -serde = { version = "1.0.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.11.0", features = ["backend-mmap"] } vmm-sys-util = "0.11.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 50cd6ab2d..1acb269fe 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.71" thiserror = "1.0.40" -serde = { version = "1.0.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", 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 6caff5e70..7a7df79b9 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -38,7 +38,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.3.0" -serde = { version = "1.0.163", features = ["rc", "derive"] } +serde = { version = "1.0.164", features = ["rc", "derive"] } serde_json = "1.0.96" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.15"