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]
|
|
|
|
kvm = []
|
2020-12-03 22:14:04 +00:00
|
|
|
mshv = []
|
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"
|
2020-12-08 05:46:11 +00:00
|
|
|
libc = "0.2.81"
|
2020-08-05 10:00:56 +00:00
|
|
|
log = "0.4.11"
|
2020-12-04 10:58:51 +00:00
|
|
|
kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" }
|
|
|
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch", features = ["with-serde", "fam-wrappers"] }
|
2020-12-03 22:43:48 +00:00
|
|
|
|
|
|
|
mshv-bindings = {git = "https://github.com/cloud-hypervisor/mshv", branch = "master", features = ["with-serde", "fam-wrappers"] }
|
|
|
|
mshv-ioctls = { git = "https://github.com/cloud-hypervisor/mshv", branch = "master" }
|
|
|
|
|
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"
|
2020-11-22 23:13:14 +00:00
|
|
|
vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] }
|
2020-06-03 19:23:56 +00:00
|
|
|
vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] }
|
|
|
|
|
|
|
|
[dependencies.linux-loader]
|
|
|
|
git = "https://github.com/rust-vmm/linux-loader"
|
|
|
|
features = ["elf", "bzimage"]
|
2020-11-13 11:30:25 +00:00
|
|
|
|
2020-12-07 17:07:28 +00:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
2020-12-14 10:46:40 +00:00
|
|
|
version = "1.10"
|
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]
|
|
|
|
env_logger = "0.8.2"
|