2019-02-21 16:04:44 +00:00
|
|
|
[package]
|
|
|
|
name = "cloud-hypervisor"
|
2021-10-13 14:31:53 +00:00
|
|
|
version = "19.0.0"
|
2019-02-21 16:04:44 +00:00
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
2019-11-25 21:57:55 +00:00
|
|
|
default-run = "cloud-hypervisor"
|
2020-02-13 05:11:03 +00:00
|
|
|
build = "build.rs"
|
2020-08-09 09:39:31 +00:00
|
|
|
license = "LICENSE-APACHE & LICENSE-BSD-3-Clause"
|
|
|
|
description = "Open source Virtual Machine Monitor (VMM) that runs on top of KVM"
|
|
|
|
homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor"
|
2019-02-21 16:04:44 +00:00
|
|
|
|
2020-06-17 17:15:52 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
|
2019-02-21 16:04:44 +00:00
|
|
|
[dependencies]
|
2021-11-10 09:11:10 +00:00
|
|
|
anyhow = "1.0.45"
|
2020-10-23 10:20:37 +00:00
|
|
|
api_client = { path = "api_client" }
|
2020-08-14 02:32:59 +00:00
|
|
|
clap = { version = "2.33.3", features = ["wrap_help"] }
|
2021-02-25 16:53:46 +00:00
|
|
|
epoll = "4.3.1"
|
2021-02-17 11:19:39 +00:00
|
|
|
event_monitor = { path = "event_monitor" }
|
2020-06-08 00:50:38 +00:00
|
|
|
hypervisor = { path = "hypervisor" }
|
2021-11-08 09:33:57 +00:00
|
|
|
libc = "0.2.107"
|
2021-01-27 03:17:53 +00:00
|
|
|
log = { version = "0.4.14", features = ["std"] }
|
2020-09-08 14:51:00 +00:00
|
|
|
option_parser = { path = "option_parser" }
|
2021-10-01 17:29:21 +00:00
|
|
|
seccompiler = "0.2.0"
|
2021-11-05 23:12:59 +00:00
|
|
|
serde_json = "1.0.69"
|
2021-08-31 23:12:14 +00:00
|
|
|
signal-hook = "0.3.10"
|
2021-10-12 05:10:27 +00:00
|
|
|
thiserror = "1.0.30"
|
2019-06-03 14:40:09 +00:00
|
|
|
vmm = { path = "vmm" }
|
2021-09-15 00:12:33 +00:00
|
|
|
vmm-sys-util = "0.9.0"
|
2021-10-22 08:29:33 +00:00
|
|
|
vm-memory = "0.6.0"
|
2019-05-23 15:45:13 +00:00
|
|
|
|
2020-09-04 21:31:38 +00:00
|
|
|
[build-dependencies]
|
|
|
|
clap = { version = "2.33.3", features = ["wrap_help"] }
|
|
|
|
|
2020-10-07 17:14:13 +00:00
|
|
|
# List of patched crates
|
2021-02-23 14:01:31 +00:00
|
|
|
[patch.crates-io]
|
2021-09-15 13:55:15 +00:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0", features = ["with-serde", "fam-wrappers"] }
|
2021-05-06 13:31:41 +00:00
|
|
|
versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" }
|
2021-02-23 14:01:31 +00:00
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[dev-dependencies]
|
2019-06-04 15:24:39 +00:00
|
|
|
credibility = "0.1.3"
|
2021-09-15 23:09:12 +00:00
|
|
|
dirs = "4.0.0"
|
2019-08-26 01:05:43 +00:00
|
|
|
lazy_static= "1.4.0"
|
2020-05-15 09:19:51 +00:00
|
|
|
net_util = { path = "net_util" }
|
2021-11-05 23:12:59 +00:00
|
|
|
serde_json = "1.0.69"
|
2021-03-23 16:15:48 +00:00
|
|
|
test_infra = { path = "test_infra" }
|
2021-02-22 15:48:16 +00:00
|
|
|
wait-timeout = "0.2.0"
|
2019-05-23 15:45:13 +00:00
|
|
|
|
|
|
|
[features]
|
2021-09-29 12:21:07 +00:00
|
|
|
default = ["common", "kvm"]
|
2020-12-08 17:39:06 +00:00
|
|
|
# Common features for all hypervisors
|
|
|
|
common = ["acpi", "cmos", "fwdebug", "io_uring"]
|
2019-09-05 15:29:55 +00:00
|
|
|
acpi = ["vmm/acpi"]
|
2019-10-02 14:21:54 +00:00
|
|
|
cmos = ["vmm/cmos"]
|
2020-04-17 09:39:28 +00:00
|
|
|
fwdebug = ["vmm/fwdebug"]
|
2020-07-07 11:06:40 +00:00
|
|
|
kvm = ["vmm/kvm"]
|
2020-12-03 22:14:04 +00:00
|
|
|
mshv = ["vmm/mshv"]
|
2020-08-03 06:32:28 +00:00
|
|
|
io_uring = ["vmm/io_uring"]
|
2021-02-03 10:02:18 +00:00
|
|
|
tdx = ["vmm/tdx"]
|
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 = [
|
2020-07-15 09:37:57 +00:00
|
|
|
"acpi_tables",
|
2020-10-23 10:20:37 +00:00
|
|
|
"api_client",
|
2020-01-02 18:40:37 +00:00
|
|
|
"arch",
|
2020-07-15 09:37:57 +00:00
|
|
|
"block_util",
|
2020-01-02 18:40:37 +00:00
|
|
|
"devices",
|
2021-02-17 11:16:00 +00:00
|
|
|
"event_monitor",
|
2020-07-15 09:37:57 +00:00
|
|
|
"hypervisor",
|
|
|
|
"net_gen",
|
|
|
|
"net_util",
|
|
|
|
"option_parser",
|
2020-01-02 18:40:37 +00:00
|
|
|
"pci",
|
2020-07-15 09:37:57 +00:00
|
|
|
"qcow",
|
2021-03-22 18:23:51 +00:00
|
|
|
"rate_limiter",
|
2021-06-04 11:42:36 +00:00
|
|
|
"vfio_user",
|
2021-07-26 15:51:03 +00:00
|
|
|
"vhdx",
|
2019-09-26 11:32:24 +00:00
|
|
|
"vhost_user_backend",
|
2020-07-15 09:37:57 +00:00
|
|
|
"vhost_user_block",
|
2020-01-20 16:10:21 +00:00
|
|
|
"vhost_user_net",
|
2020-07-15 09:37:57 +00:00
|
|
|
"virtio-devices",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2020-07-15 09:37:57 +00:00
|
|
|
"vmm",
|
2020-01-02 18:40:37 +00:00
|
|
|
"vm-allocator",
|
2020-07-15 09:37:57 +00:00
|
|
|
"vm-device",
|
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio"
|
2019-09-26 11:32:24 +00:00
|
|
|
]
|
2021-03-23 16:15:48 +00:00
|
|
|
exclude = ["test_infra"]
|