diff --git a/Cargo.lock b/Cargo.lock index 0a0159a7a..a8435ea65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1057,18 +1057,18 @@ checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" [[package]] name = "serde" -version = "1.0.150" +version = "1.0.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91" +checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.150" +version = "1.0.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e" +checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8" dependencies = [ "proc-macro2", "quote", diff --git a/arch/Cargo.toml b/arch/Cargo.toml index bca63fbbd..988009ec4 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -15,7 +15,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.138" linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] } log = "0.4.17" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } thiserror = "1.0.37" uuid = "1.2.2" versionize = "0.1.9" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 15ea36c89..356f2579d 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] libc = "0.2.138" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index ef635402b..0567073d6 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.12.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.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_with = { version = "2.1.0", 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 cfdb92273..9c988d2a4 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.138" log = "0.4.17" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.150" +serde = "1.0.151" thiserror = "1.0.37" versionize = "0.1.9" versionize_derive = "0.1.4" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index a87ab9001..1d64cbdb9 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -19,7 +19,7 @@ vfio_user = { path = "../vfio_user" } vmm-sys-util = "0.11.0" libc = "0.2.138" log = "0.4.17" -serde = { version = "1.0.150", features = ["derive"] } +serde = { version = "1.0.151", features = ["derive"] } thiserror = "1.0.37" versionize = "0.1.9" versionize_derive = "0.1.4" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 06122b52e..22a733e2d 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] clap = { version = "4.0.29", features = ["wrap_help","cargo"] } dirs = "4.0.0" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" test_infra = { path = "../test_infra" } thiserror = "1.0.37" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 01ee95fa7..147627004 100644 --- a/test_infra/Cargo.toml +++ b/test_infra/Cargo.toml @@ -9,7 +9,7 @@ dirs = "4.0.0" epoll = "4.3.1" libc = "0.2.138" once_cell = "1.16.0" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" ssh2 = { version = "0.9.3", features = ["vendored-openssl"] } vmm-sys-util = "0.11.0" diff --git a/tracer/Cargo.toml b/tracer/Cargo.toml index 80ab3b26a..1b802bec6 100644 --- a/tracer/Cargo.toml +++ b/tracer/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" libc = "0.2.138" log = "0.4.17" once_cell = "1.16.0" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" [features] diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index 1817b8707..299d99e02 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] libc = "0.2.138" log = "0.4.17" -serde = { version = "1.0.150", features = ["rc"] } +serde = { version = "1.0.151", features = ["rc"] } serde_derive = "1.0.149" serde_json = "1.0.89" thiserror = "1.0.37" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index bfeb4d10a..b7b9f25d4 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.150", features = ["derive"] } +serde = { version = "1.0.151", features = ["derive"] } serde_json = "1.0.89" serial_buffer = { path = "../serial_buffer" } thiserror = "1.0.37" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 3dcc7e3e4..8fcb73d97 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"] anyhow = "1.0.66" hypervisor = { path = "../hypervisor" } thiserror = "1.0.37" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", 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 1de42206b..aa39a3cc6 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.66" thiserror = "1.0.37" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" versionize = "0.1.9" versionize_derive = "0.1.4" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 94fba5304..ca2c5a4eb 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -36,7 +36,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.3.0" -serde = { version = "1.0.150", features = ["rc", "derive"] } +serde = { version = "1.0.151", features = ["rc", "derive"] } serde_json = "1.0.89" serial_buffer = { path = "../serial_buffer" } signal-hook = "0.3.14"