[package] name = "cloud-hypervisor" version = "0.8.0" authors = ["The Cloud Hypervisor Authors"] edition = "2018" default-run = "cloud-hypervisor" build = "build.rs" [profile.release] lto = true [dependencies] clap = { version = "2.33.1", features=["wrap_help"] } hypervisor = { path = "hypervisor" } libc = "0.2.71" log = { version = "0.4.8", features = ["std"] } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" } serde_json = ">=1.0.9" vhost_user_block = { path = "vhost_user_block"} vhost_user_net = { path = "vhost_user_net"} vmm = { path = "vmm" } vmm-sys-util = "0.6.1" [patch.crates-io] vm-memory = { git = "https://github.com/cloud-hypervisor/vm-memory", branch = "ch" } [dev-dependencies] ssh2 = "0.8.2" dirs = "2.0.2" credibility = "0.1.3" tempdir = "0.3.7" lazy_static= "1.4.0" tempfile = "3.1.0" serde_json = ">=1.0.9" net_util = { path = "net_util" } [features] default = ["acpi", "pci", "cmos"] acpi = ["vmm/acpi"] pci = ["vmm/pci_support"] mmio = ["vmm/mmio_support"] cmos = ["vmm/cmos"] fwdebug = ["vmm/fwdebug"] # Integration tests require a special environment to run in integration_tests = [] [workspace] members = [ "arch", "devices", "qcow", "pci", "virtio-devices", "vmm", "vm-virtio", "vm-device", "vm-migration", "vhost_user_block", "vhost_user_backend", "vhost_user_fs", "vhost_user_net", "net_util", "acpi_tables", "arch_gen", "net_gen", "vm-allocator", ]