2020-06-07 17:50:38 -07:00
|
|
|
[package]
|
|
|
|
name = "hypervisor"
|
|
|
|
version = "0.1.0"
|
2020-10-19 15:42:43 -07:00
|
|
|
authors = ["Microsoft Authors"]
|
2020-06-07 17:50:38 -07:00
|
|
|
edition = "2018"
|
2020-10-19 15:42:43 -07:00
|
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
2020-06-07 17:50:38 -07:00
|
|
|
|
2020-07-07 11:06:40 +00:00
|
|
|
[features]
|
2021-02-18 17:17:00 +00:00
|
|
|
kvm = ["kvm-ioctls", "kvm-bindings"]
|
|
|
|
mshv = ["mshv-ioctls", "mshv-bindings"]
|
2021-02-12 15:17:18 +00:00
|
|
|
tdx = []
|
2020-06-07 17:50:38 -07:00
|
|
|
|
2020-06-03 12:23:56 -07:00
|
|
|
[dependencies]
|
2021-12-23 23:40:38 +00:00
|
|
|
anyhow = "1.0.52"
|
2021-08-06 10:11:40 +01:00
|
|
|
epoll = "4.3.1"
|
2021-10-12 05:10:27 +00:00
|
|
|
thiserror = "1.0.30"
|
2021-12-14 01:14:38 +00:00
|
|
|
libc = "0.2.112"
|
2021-01-27 03:17:53 +00:00
|
|
|
log = "0.4.14"
|
2021-11-18 23:08:40 +00:00
|
|
|
kvm-ioctls = { version = "0.11.0", optional = true }
|
2021-09-15 15:55:15 +02:00
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0", features = ["with-serde", "fam-wrappers"], optional = true }
|
2021-09-02 08:44:25 +00:00
|
|
|
mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true }
|
|
|
|
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true}
|
2022-01-04 02:43:44 +00:00
|
|
|
serde = { version = "1.0.133", features = ["rc"] }
|
2022-01-04 03:27:20 +00:00
|
|
|
serde_derive = "1.0.133"
|
2022-01-18 23:11:49 +00:00
|
|
|
serde_json = "1.0.75"
|
2021-12-21 10:21:37 +01:00
|
|
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
|
2021-09-15 00:12:33 +00:00
|
|
|
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
2020-06-03 12:23:56 -07:00
|
|
|
|
2020-12-07 17:07:28 +00:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
2021-10-07 23:09:52 +00:00
|
|
|
version = "1.15.0"
|
2020-11-13 12:30:25 +01:00
|
|
|
default-features = false
|
2020-12-01 00:00:53 +01:00
|
|
|
features = ["std", "decoder", "op_code_info", "instr_info", "fast_fmt"]
|
2020-11-19 20:20:23 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-07-14 23:09:44 +00:00
|
|
|
env_logger = "0.9.0"
|