2019-02-22 16:04:35 +00:00
|
|
|
[package]
|
|
|
|
name = "vmm"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-09-03 13:54:06 +00:00
|
|
|
[features]
|
2019-09-05 15:29:55 +00:00
|
|
|
default = []
|
2020-05-11 15:19:32 +00:00
|
|
|
acpi = ["acpi_tables","devices/acpi", "arch/acpi"]
|
2019-11-08 15:27:05 +00:00
|
|
|
pci_support = ["pci", "vfio-ioctls", "vm-virtio/pci_support"]
|
2019-09-11 16:25:07 +00:00
|
|
|
mmio_support = ["vm-virtio/mmio_support"]
|
2019-10-02 14:21:54 +00:00
|
|
|
cmos = ["devices/cmos"]
|
2020-04-17 09:39:28 +00:00
|
|
|
fwdebug = ["devices/fwdebug"]
|
2019-09-03 13:54:06 +00:00
|
|
|
|
2019-02-22 16:04:35 +00:00
|
|
|
[dependencies]
|
2019-12-31 10:49:11 +00:00
|
|
|
arc-swap = ">=0.4.4"
|
2020-05-11 17:49:21 +00:00
|
|
|
clap = "2.33.1"
|
2019-09-03 13:54:06 +00:00
|
|
|
acpi_tables = { path = "../acpi_tables", optional = true }
|
2019-11-22 13:54:52 +00:00
|
|
|
anyhow = "1.0"
|
2019-02-28 13:16:58 +00:00
|
|
|
arch = { path = "../arch" }
|
2019-03-07 13:56:43 +00:00
|
|
|
devices = { path = "../devices" }
|
2019-11-08 17:49:51 +00:00
|
|
|
epoll = ">=4.0.1"
|
2020-02-16 20:42:42 +00:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch", features = ["with-serde", "fam-wrappers"] }
|
2020-02-17 14:28:24 +00:00
|
|
|
kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" }
|
2019-09-18 09:14:49 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-05-26 15:44:29 +00:00
|
|
|
libc = "0.2.71"
|
2019-08-02 11:02:17 +00:00
|
|
|
log = "0.4.8"
|
2020-03-11 15:41:33 +00:00
|
|
|
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "master" }
|
2019-05-09 15:01:42 +00:00
|
|
|
net_util = { path = "../net_util" }
|
2019-09-11 16:07:33 +00:00
|
|
|
pci = {path = "../pci", optional = true}
|
2019-04-29 19:32:56 +00:00
|
|
|
qcow = { path = "../qcow" }
|
2020-03-19 10:49:13 +00:00
|
|
|
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" }
|
2019-09-27 09:40:50 +00:00
|
|
|
serde = {version = ">=1.0.27", features = ["rc"] }
|
|
|
|
serde_derive = ">=1.0.27"
|
|
|
|
serde_json = ">=1.0.9"
|
2020-02-25 01:38:08 +00:00
|
|
|
url = "2.1.1"
|
2019-11-12 14:36:07 +00:00
|
|
|
vfio-ioctls = { git = "https://github.com/cloud-hypervisor/vfio-ioctls", branch = "ch", optional = true }
|
2019-05-06 17:27:40 +00:00
|
|
|
vm-allocator = { path = "../vm-allocator" }
|
2019-11-18 23:24:31 +00:00
|
|
|
vm-device = { path = "../vm-device" }
|
2020-05-28 15:06:54 +00:00
|
|
|
vm-memory = { version = "0.2.1", features = ["backend-mmap", "backend-atomic"] }
|
2019-05-01 16:59:51 +00:00
|
|
|
vm-migration = { path = "../vm-migration" }
|
2019-10-07 17:48:44 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2020-02-17 14:28:24 +00:00
|
|
|
vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] }
|
2020-05-11 17:49:36 +00:00
|
|
|
signal-hook = "0.1.15"
|
2020-02-04 16:44:12 +00:00
|
|
|
tempfile = "3.1.0"
|
2019-02-22 16:04:35 +00:00
|
|
|
|
2019-06-06 01:51:43 +00:00
|
|
|
[dependencies.linux-loader]
|
2019-06-13 10:07:32 +00:00
|
|
|
git = "https://github.com/rust-vmm/linux-loader"
|
2019-06-10 09:14:02 +00:00
|
|
|
features = ["elf", "bzimage"]
|
2020-05-05 12:09:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
credibility = "0.1.3"
|