2019-02-21 17:04:44 +01:00
|
|
|
[package]
|
|
|
|
name = "cloud-hypervisor"
|
2023-04-18 12:02:16 -07:00
|
|
|
version = "28.3.0"
|
2019-02-21 17:04:44 +01:00
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
2019-11-25 21:57:55 +00:00
|
|
|
default-run = "cloud-hypervisor"
|
2020-02-12 21:11:03 -08:00
|
|
|
build = "build.rs"
|
2020-08-09 11:39:31 +02: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"
|
2022-02-23 11:53:19 +00:00
|
|
|
# Minimum buildable version:
|
|
|
|
# Keep in sync with version in .github/workflows/build.yaml
|
2022-11-29 16:04:10 +00:00
|
|
|
# Policy on MSRV (see #4318):
|
|
|
|
# Can only be bumped by:
|
|
|
|
# a.) A dependency requires it,
|
|
|
|
# b.) If we want to use a new feature and that MSRV is at least 6 months old,
|
|
|
|
# c.) There is a security issue that is addressed by the toolchain update.
|
2023-01-26 08:01:04 +00:00
|
|
|
rust-version = "1.62"
|
2019-02-21 17:04:44 +01:00
|
|
|
|
2020-06-17 18:15:52 +01:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2022-08-11 11:35:26 +00:00
|
|
|
codegen-units = 1
|
|
|
|
opt-level = "s"
|
2023-01-19 09:59:27 -08:00
|
|
|
strip = true
|
2020-06-17 18:15:52 +01:00
|
|
|
|
2019-02-21 17:04:44 +01:00
|
|
|
[dependencies]
|
2022-10-20 23:31:23 +00:00
|
|
|
anyhow = "1.0.66"
|
2020-10-23 11:20:37 +01:00
|
|
|
api_client = { path = "api_client" }
|
2022-12-13 13:25:00 +00:00
|
|
|
clap = { version = "4.0.29", features = ["wrap_help","cargo","string"] }
|
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-07 17:50:38 -07:00
|
|
|
hypervisor = { path = "hypervisor" }
|
2022-12-13 13:25:00 +00:00
|
|
|
libc = "0.2.138"
|
2022-05-02 23:56:28 +00:00
|
|
|
log = { version = "0.4.17", features = ["std"] }
|
2020-09-08 15:51:00 +01:00
|
|
|
option_parser = { path = "option_parser" }
|
2022-09-14 23:14:12 +00:00
|
|
|
seccompiler = "0.3.0"
|
2022-12-13 13:25:00 +00:00
|
|
|
serde_json = "1.0.89"
|
2022-05-17 02:54:07 +00:00
|
|
|
signal-hook = "0.3.14"
|
2022-09-27 23:08:55 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-09-08 06:02:26 +00:00
|
|
|
tpm = { path = "tpm"}
|
2022-06-21 15:01:26 +01:00
|
|
|
tracer = { path = "tracer" }
|
2019-06-03 16:40:09 +02:00
|
|
|
vmm = { path = "vmm" }
|
2022-12-13 13:25:00 +00:00
|
|
|
vmm-sys-util = "0.11.0"
|
|
|
|
vm-memory = "0.10.0"
|
2019-05-23 16:45:13 +01:00
|
|
|
|
2020-09-04 14:31:38 -07:00
|
|
|
[build-dependencies]
|
2022-12-13 13:25:00 +00:00
|
|
|
clap = { version = "4.0.29", features = ["cargo"] }
|
2020-09-04 14:31:38 -07:00
|
|
|
|
2020-10-07 19:14:13 +02:00
|
|
|
# List of patched crates
|
2021-02-23 15:01:31 +01:00
|
|
|
[patch.crates-io]
|
2022-12-13 13:25:00 +00:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx" }
|
2023-04-10 11:11:46 +00:00
|
|
|
kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "main" }
|
2021-05-06 13:31:41 +00:00
|
|
|
versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" }
|
2021-02-23 15:01:31 +01:00
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[dev-dependencies]
|
2021-09-15 23:09:12 +00:00
|
|
|
dirs = "4.0.0"
|
2020-05-15 10:19:51 +01:00
|
|
|
net_util = { path = "net_util" }
|
2022-11-11 23:04:20 +00:00
|
|
|
once_cell = "1.16.0"
|
2022-12-13 13:25:00 +00:00
|
|
|
serde_json = "1.0.89"
|
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 16:45:13 +01:00
|
|
|
|
|
|
|
[features]
|
2022-09-26 17:02:18 +01:00
|
|
|
default = ["kvm"]
|
2022-05-10 19:21:02 +08:00
|
|
|
guest_debug = ["vmm/guest_debug"]
|
2020-07-07 11:06:40 +00:00
|
|
|
kvm = ["vmm/kvm"]
|
2020-12-03 14:14:04 -08:00
|
|
|
mshv = ["vmm/mshv"]
|
2021-02-03 10:02:18 +00:00
|
|
|
tdx = ["vmm/tdx"]
|
2022-06-21 15:01:26 +01:00
|
|
|
tracing = ["vmm/tracing", "tracer/tracing"]
|
2019-05-23 16:45:13 +01:00
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[workspace]
|
2019-09-26 19:32:24 +08:00
|
|
|
members = [
|
2020-07-15 10:37:57 +01:00
|
|
|
"acpi_tables",
|
2020-10-23 11:20:37 +01:00
|
|
|
"api_client",
|
2020-01-02 18:40:37 +00:00
|
|
|
"arch",
|
2020-07-15 10:37:57 +01: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 10:37:57 +01:00
|
|
|
"hypervisor",
|
|
|
|
"net_gen",
|
|
|
|
"net_util",
|
|
|
|
"option_parser",
|
2020-01-02 18:40:37 +00:00
|
|
|
"pci",
|
2022-01-10 21:27:58 -08:00
|
|
|
"performance-metrics",
|
2020-07-15 10:37:57 +01:00
|
|
|
"qcow",
|
2021-03-22 11:23:51 -07:00
|
|
|
"rate_limiter",
|
2022-08-25 10:26:59 +02:00
|
|
|
"serial_buffer",
|
2022-03-04 15:37:39 +00:00
|
|
|
"test_infra",
|
2022-06-21 15:01:26 +01:00
|
|
|
"tracer",
|
2021-06-04 11:42:36 +00:00
|
|
|
"vfio_user",
|
2021-07-26 11:51:03 -04:00
|
|
|
"vhdx",
|
2020-07-15 10:37:57 +01:00
|
|
|
"vhost_user_block",
|
2020-01-20 16:10:21 +00:00
|
|
|
"vhost_user_net",
|
2020-07-15 10:37:57 +01:00
|
|
|
"virtio-devices",
|
|
|
|
"vmm",
|
2020-01-02 18:40:37 +00:00
|
|
|
"vm-allocator",
|
2020-07-15 10:37:57 +01:00
|
|
|
"vm-device",
|
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio"
|
2019-09-26 19:32:24 +08:00
|
|
|
]
|