2019-04-18 17:24:06 +00:00
|
|
|
[package]
|
|
|
|
name = "vm-virtio"
|
|
|
|
version = "0.1.0"
|
2020-07-02 12:25:19 +00:00
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
2019-04-18 17:24:06 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-09-11 16:07:33 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2019-04-18 17:24:06 +00:00
|
|
|
[dependencies]
|
2021-01-27 03:17:53 +00:00
|
|
|
log = "0.4.14"
|
2021-08-06 09:11:40 +00:00
|
|
|
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
2021-10-21 10:41:16 +00:00
|
|
|
virtio-queue = { path = "../virtio-queue" }
|
2021-10-22 08:29:33 +00:00
|
|
|
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|