2019-09-11 19:22:44 +00:00
|
|
|
[package]
|
|
|
|
name = "vhost_user_backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
pci_support = ["vm-virtio/pci_support"]
|
|
|
|
mmio_support = ["vm-virtio/mmio_support"]
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-08 17:49:51 +00:00
|
|
|
epoll = ">=4.0.1"
|
2019-11-29 12:24:04 +00:00
|
|
|
libc = "0.2.66"
|
2019-11-29 15:36:33 +00:00
|
|
|
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
|
2019-09-11 19:22:44 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2019-12-11 13:02:07 +00:00
|
|
|
vmm-sys-util = ">=0.3.1"
|
2019-09-11 19:22:44 +00:00
|
|
|
|
|
|
|
[dependencies.vhost_rs]
|
|
|
|
path = "../vhost_rs"
|
|
|
|
features = ["vhost-user-slave"]
|
|
|
|
|