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]
|
2021-09-13 23:13:25 +00:00
|
|
|
anyhow = "1.0.44"
|
2021-08-06 09:11:40 +00:00
|
|
|
epoll = "4.3.1"
|
2021-10-12 05:10:27 +00:00
|
|
|
thiserror = "1.0.30"
|
2021-09-28 09:26:35 +00:00
|
|
|
libc = "0.2.103"
|
2021-01-27 03:17:53 +00:00
|
|
|
log = "0.4.14"
|
2021-09-16 09:16:31 +00:00
|
|
|
kvm-ioctls = { version = "0.10.0", optional = true }
|
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"], 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}
|
2021-08-30 01:34:48 +00:00
|
|
|
serde = { version = "1.0.130", features = ["rc"] }
|
2021-08-29 23:29:39 +00:00
|
|
|
serde_derive = "1.0.130"
|
2021-09-14 23:08:03 +00:00
|
|
|
serde_json = "1.0.68"
|
2021-08-06 07:46:17 +00:00
|
|
|
vm-memory = { version = "0.6.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 19:23:56 +00: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 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-07-14 23:09:44 +00:00
|
|
|
env_logger = "0.9.0"
|