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