2019-02-21 16:04:44 +00:00
|
|
|
[package]
|
|
|
|
name = "cloud-hypervisor"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-08-02 11:02:17 +00:00
|
|
|
clap = "2.33.0"
|
2019-09-20 18:21:54 +00:00
|
|
|
epoll = "4.1.0"
|
2019-08-26 01:05:43 +00:00
|
|
|
lazy_static = "1.4.0"
|
2019-09-25 13:01:49 +00:00
|
|
|
libc = "0.2.62"
|
2019-08-07 11:19:21 +00:00
|
|
|
log = { version = "0.4.8", features = ["std"] }
|
2019-09-20 18:21:54 +00:00
|
|
|
net_gen = { path = "net_gen" }
|
|
|
|
net_util = { path = "net_util" }
|
|
|
|
vhost_user_backend = { path = "vhost_user_backend"}
|
|
|
|
virtio-bindings = { git = "https://github.com/rust-vmm/virtio-bindings", version = "0.1", features = ["virtio-v5_0_0"]}
|
2019-06-03 14:40:09 +00:00
|
|
|
vmm = { path = "vmm" }
|
2019-09-20 18:21:54 +00:00
|
|
|
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
|
2019-09-25 13:01:49 +00:00
|
|
|
vmm-sys-util = { git = "https://github.com/rust-vmm/vmm-sys-util" }
|
2019-09-20 18:21:54 +00:00
|
|
|
vm-virtio = { path = "vm-virtio" }
|
2019-05-23 15:45:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-09-16 11:51:50 +00:00
|
|
|
ssh2 = "0.4.0"
|
2019-08-02 07:51:51 +00:00
|
|
|
dirs = "2.0.2"
|
2019-06-04 15:24:39 +00:00
|
|
|
credibility = "0.1.3"
|
2019-08-02 11:02:17 +00:00
|
|
|
tempdir= "0.3.7"
|
2019-08-26 01:05:43 +00:00
|
|
|
lazy_static= "1.4.0"
|
2019-05-23 15:45:13 +00:00
|
|
|
|
2019-09-20 18:21:54 +00:00
|
|
|
[dependencies.vhost_rs]
|
|
|
|
path = "vhost_rs"
|
|
|
|
features = ["vhost-user-slave"]
|
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[features]
|
2019-10-02 14:21:54 +00:00
|
|
|
default = ["acpi", "pci", "cmos"]
|
2019-09-05 15:29:55 +00:00
|
|
|
acpi = ["vmm/acpi"]
|
2019-09-11 16:07:33 +00:00
|
|
|
pci = ["vmm/pci_support"]
|
2019-09-11 16:25:07 +00:00
|
|
|
mmio = ["vmm/mmio_support"]
|
2019-10-02 14:21:54 +00:00
|
|
|
cmos = ["vmm/cmos"]
|
2019-05-23 15:45:13 +00:00
|
|
|
|
|
|
|
# Integration tests require a special environment to run in
|
|
|
|
integration_tests = []
|
2019-07-16 09:54:33 +00:00
|
|
|
|
|
|
|
[workspace]
|
2019-09-26 11:32:24 +00:00
|
|
|
members = [
|
|
|
|
"vhost_user_backend",
|
|
|
|
]
|