build: Bump versions of acpi_tables and zerocopy

The 'derive' feature of `zerocopy` crate now is optional and requires to
be enabled explicitly [1]. Also, a version bump on `acpi_tables` is
needed to reply on a single version of `zerocopy` to avoid compilation
errors.

[1] https://github.com/google/zerocopy/pull/176

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen
2023-09-25 15:44:06 -07:00
committed by Rob Bradford
parent 50bdd1bf84
commit 3ca684b26e
3 changed files with 24 additions and 45 deletions

View File

@@ -61,4 +61,4 @@ vm-migration = { path = "../vm-migration" }
vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = { version = "0.11.0", features = ["with-serde"] }
zbus = { version = "3.11.1", optional = true }
zerocopy = "0.6.1"
zerocopy = { version = "0.7.1", features = ["derive"] }