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"]
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
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]
|
2022-12-30 23:02:53 +00:00
|
|
|
anyhow = "1.0.68"
|
2022-07-18 15:47:51 +00:00
|
|
|
byteorder = "1.4.3"
|
2022-09-27 23:08:55 +00:00
|
|
|
thiserror = "1.0.37"
|
2023-01-05 23:03:41 +00:00
|
|
|
libc = "0.2.139"
|
2022-05-02 23:56:28 +00:00
|
|
|
log = "0.4.17"
|
2022-11-28 13:08:13 +00:00
|
|
|
kvm-ioctls = { version = "0.12.0", optional = true }
|
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }
|
2022-05-10 15:47:34 +00:00
|
|
|
mshv-bindings = { git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true }
|
2021-09-02 08:44:25 +00:00
|
|
|
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true}
|
2022-12-16 23:29:41 +00:00
|
|
|
serde = { version = "1.0.151", features = ["rc", "derive"] }
|
2022-12-07 17:39:14 +00:00
|
|
|
serde_with = { version = "2.1.0", default-features = false, features = ["macros"] }
|
2022-07-21 13:15:15 +00:00
|
|
|
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
|
2022-11-28 13:08:13 +00:00
|
|
|
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] }
|
|
|
|
vmm-sys-util = { version = "0.11.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]
|
2023-01-03 23:03:13 +00:00
|
|
|
version = "1.18.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]
|
2022-12-07 17:39:14 +00:00
|
|
|
env_logger = "0.10.0"
|