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"]
|
2020-07-02 12:25:19 +00:00
|
|
|
pci_support = ["pci", "vfio-ioctls", "virtio-devices/pci_support"]
|
|
|
|
mmio_support = ["virtio-devices/mmio_support"]
|
2019-10-02 14:21:54 +00:00
|
|
|
cmos = ["devices/cmos"]
|
2020-04-17 09:39:28 +00:00
|
|
|
fwdebug = ["devices/fwdebug"]
|
2020-07-07 11:06:40 +00:00
|
|
|
kvm = ["hypervisor/kvm"]
|
2020-08-03 06:32:28 +00:00
|
|
|
io_uring = ["virtio-devices/io_uring"]
|
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-08-14 02:32:59 +00:00
|
|
|
clap = "2.33.3"
|
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" }
|
2020-07-30 10:44:05 +00:00
|
|
|
block_util = { path = "../block_util" }
|
2019-03-07 13:56:43 +00:00
|
|
|
devices = { path = "../devices" }
|
2019-11-08 17:49:51 +00:00
|
|
|
epoll = ">=4.0.1"
|
2020-06-02 02:29:54 +00:00
|
|
|
hypervisor = { path = "../hypervisor" }
|
2019-09-18 09:14:49 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-08-21 06:20:46 +00:00
|
|
|
libc = "0.2.76"
|
2020-07-16 01:25:13 +00:00
|
|
|
log = "0.4.11"
|
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" }
|
2020-07-06 15:41:45 +00:00
|
|
|
option_parser = { path = "../option_parser" }
|
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-08-06 06:10:10 +00:00
|
|
|
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.22.0" }
|
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 }
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio-devices = {path = "../virtio-devices"}
|
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-06-22 06:51:28 +00:00
|
|
|
signal-hook = "0.1.16"
|
2020-02-04 16:44:12 +00:00
|
|
|
tempfile = "3.1.0"
|
2019-02-22 16:04:35 +00:00
|
|
|
|
2020-06-02 02:29:54 +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"
|
2020-06-09 10:28:02 +00:00
|
|
|
features = ["elf", "bzimage", "pe"]
|
2020-05-05 12:09:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
credibility = "0.1.3"
|