2020-06-08 00:50:38 +00:00
|
|
|
[package]
|
|
|
|
name = "hypervisor"
|
|
|
|
version = "0.1.0"
|
2020-10-19 22:42:43 +00:00
|
|
|
authors = ["Microsoft Authors"]
|
2020-06-08 00:50:38 +00:00
|
|
|
edition = "2018"
|
2020-10-19 22:42:43 +00:00
|
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
2020-06-08 00:50:38 +00: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-08 00:50:38 +00:00
|
|
|
|
2020-06-03 19:23:56 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2020-12-04 18:30:29 +00:00
|
|
|
epoll = ">=4.0.1"
|
2020-06-03 19:23:56 +00:00
|
|
|
thiserror = "1.0"
|
2021-04-06 16:31:48 +00:00
|
|
|
libc = "0.2.93"
|
2021-01-27 03:17:53 +00:00
|
|
|
log = "0.4.14"
|
2021-03-08 14:17:38 +00:00
|
|
|
kvm-ioctls = { version = "0.8.0", optional = true }
|
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"], optional = true }
|
2021-02-18 17:17:00 +00:00
|
|
|
mshv-bindings = {git = "https://github.com/cloud-hypervisor/mshv", branch = "master", features = ["with-serde", "fam-wrappers"], optional = true }
|
|
|
|
mshv-ioctls = { git = "https://github.com/cloud-hypervisor/mshv", branch = "master", optional = true}
|
2020-06-03 19:23:56 +00:00
|
|
|
serde = {version = ">=1.0.27", features = ["rc"] }
|
|
|
|
serde_derive = ">=1.0.27"
|
|
|
|
serde_json = ">=1.0.9"
|
2021-02-10 09:54:08 +00:00
|
|
|
vm-memory = { version = "0.5.0", features = ["backend-mmap", "backend-atomic"] }
|
2020-06-03 19:23:56 +00:00
|
|
|
vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] }
|
|
|
|
|
2020-12-07 17:07:28 +00:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
2021-03-22 14:39:51 +00:00
|
|
|
version = "1.11"
|
2020-11-13 11:30:25 +00:00
|
|
|
default-features = false
|
2020-11-30 23:00:53 +00:00
|
|
|
features = ["std", "decoder", "op_code_info", "instr_info", "fast_fmt"]
|
2020-11-19 19:20:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-02-11 18:55:00 +00:00
|
|
|
env_logger = "0.8.3"
|