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 = []
|
2019-11-06 17:20:55 +00:00
|
|
|
acpi = ["acpi_tables","devices/acpi"]
|
2019-09-11 16:07:33 +00:00
|
|
|
pci_support = ["pci", "vfio", "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"]
|
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"
|
2019-12-12 17:12:42 +00:00
|
|
|
clap = "2.33.0"
|
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"
|
2019-11-29 15:36:33 +00:00
|
|
|
kvm-bindings = "0.2.0"
|
2020-01-29 09:53:56 +00:00
|
|
|
kvm-ioctls = "0.5.0"
|
2019-09-18 09:14:49 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-02-20 23:34:30 +00:00
|
|
|
libc = "0.2.67"
|
2019-08-02 11:02:17 +00:00
|
|
|
log = "0.4.8"
|
2019-10-04 12:24:35 +00:00
|
|
|
micro_http = { git = "https://github.com/firecracker-microvm/firecracker", 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" }
|
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"
|
2019-09-11 16:07:33 +00:00
|
|
|
vfio = { path = "../vfio", 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-03-05 09:15:06 +00:00
|
|
|
vm-memory = { version = "0.1.0", features = ["backend-mmap", "backend-atomic"] }
|
2019-10-07 17:48:44 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2019-12-11 13:02:07 +00:00
|
|
|
vmm-sys-util = ">=0.3.1"
|
2020-01-26 08:04:23 +00:00
|
|
|
signal-hook = "0.1.13"
|
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"]
|