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-06-08 00:50:38 +00:00
|
|
|
|
2020-06-03 19:23:56 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2020-11-16 11:56:15 +00:00
|
|
|
arc-swap = ">=1.0.0"
|
2020-06-03 19:23:56 +00:00
|
|
|
thiserror = "1.0"
|
2020-10-25 21:04:49 +00:00
|
|
|
libc = "0.2.80"
|
2020-08-05 10:00:56 +00:00
|
|
|
log = "0.4.11"
|
2020-10-07 17:14:13 +00:00
|
|
|
kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "master" }
|
|
|
|
kvm-bindings = { git = "https://github.com/rust-vmm/kvm-bindings", branch = "master", features = ["with-serde", "fam-wrappers"] }
|
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
|
|
|
|
|
|
|
[dependencies.iced-x86]
|
|
|
|
version = "1.9.1"
|
|
|
|
default-features = false
|
|
|
|
features = ["std", "decoder", "op_code_info", "instr_info"]
|
2020-11-19 19:20:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.8.2"
|