From 1842865823b6cb7b29b4da3ba0dcc50d46e59eea Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 15 Jul 2020 10:37:57 +0100 Subject: [PATCH] build: Add missing "hypervisor" crate from workspace Also rearrange the workspace members so they are in alphabetical order. Signed-off-by: Rob Bradford --- Cargo.toml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e9c84d9ac..d69911086 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,24 +48,25 @@ integration_tests = [] [workspace] members = [ + "acpi_tables", "arch", + "arch_gen", + "block_util", "devices", - "qcow", + "hypervisor", + "net_gen", + "net_util", + "option_parser", "pci", - "virtio-devices", - "vmm", - "vm-virtio", - "vm-device", - "vm-migration", - "vhost_user_block", + "qcow", "vhost_user_backend", + "vhost_user_block", "vhost_user_fs", "vhost_user_net", - "net_util", - "acpi_tables", - "arch_gen", - "net_gen", + "virtio-devices", + "vmm", "vm-allocator", - "option_parser", - "block_util" + "vm-device", + "vm-migration", + "vm-virtio" ]