mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-04 19:11:11 +00:00
3126b351c1
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.83 to 1.0.85. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.83...v1.0.85) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
94 lines
2.3 KiB
TOML
94 lines
2.3 KiB
TOML
[package]
|
|
name = "cloud-hypervisor"
|
|
version = "26.0.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
edition = "2021"
|
|
default-run = "cloud-hypervisor"
|
|
build = "build.rs"
|
|
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"
|
|
# Minimum buildable version:
|
|
# Keep in sync with version in .github/workflows/build.yaml
|
|
rust-version = "1.60"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.62"
|
|
api_client = { path = "api_client" }
|
|
clap = { version = "3.2.17", features = ["wrap_help","cargo"] }
|
|
epoll = "4.3.1"
|
|
event_monitor = { path = "event_monitor" }
|
|
hypervisor = { path = "hypervisor" }
|
|
libc = "0.2.132"
|
|
log = { version = "0.4.17", features = ["std"] }
|
|
option_parser = { path = "option_parser" }
|
|
seccompiler = "0.2.0"
|
|
serde_json = "1.0.85"
|
|
signal-hook = "0.3.14"
|
|
thiserror = "1.0.32"
|
|
vmm = { path = "vmm" }
|
|
vmm-sys-util = "0.10.0"
|
|
vm-memory = "0.8.0"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "3.2.17", features = ["cargo"] }
|
|
|
|
# List of patched crates
|
|
[patch.crates-io]
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx" }
|
|
kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "main" }
|
|
versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" }
|
|
|
|
[dev-dependencies]
|
|
dirs = "4.0.0"
|
|
net_util = { path = "net_util" }
|
|
once_cell = "1.13.1"
|
|
serde_json = "1.0.85"
|
|
test_infra = { path = "test_infra" }
|
|
wait-timeout = "0.2.0"
|
|
|
|
[features]
|
|
default = ["common", "kvm"]
|
|
# Common features for all hypervisors
|
|
common = ["fwdebug"]
|
|
amx = ["vmm/amx"]
|
|
cmos = ["vmm/cmos"]
|
|
fwdebug = ["vmm/fwdebug"]
|
|
gdb = ["vmm/gdb"]
|
|
guest_debug = ["vmm/guest_debug"]
|
|
kvm = ["vmm/kvm"]
|
|
mshv = ["vmm/mshv"]
|
|
tdx = ["vmm/tdx"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"acpi_tables",
|
|
"api_client",
|
|
"arch",
|
|
"block_util",
|
|
"devices",
|
|
"event_monitor",
|
|
"hypervisor",
|
|
"net_gen",
|
|
"net_util",
|
|
"option_parser",
|
|
"pci",
|
|
"performance-metrics",
|
|
"qcow",
|
|
"rate_limiter",
|
|
"test_infra",
|
|
"vfio_user",
|
|
"vhdx",
|
|
"vhost_user_block",
|
|
"vhost_user_net",
|
|
"virtio-devices",
|
|
"vmm",
|
|
"vm-allocator",
|
|
"vm-device",
|
|
"vm-migration",
|
|
"vm-virtio"
|
|
]
|