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]
|
|
|
|
epoll = "4.1.0"
|
2019-10-18 08:23:43 +00:00
|
|
|
libc = "0.2.65"
|
2019-09-11 19:22:44 +00:00
|
|
|
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
|
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2019-10-30 16:38:38 +00:00
|
|
|
vmm-sys-util = ">=0.1.1"
|
2019-09-11 19:22:44 +00:00
|
|
|
|
|
|
|
[dependencies.vhost_rs]
|
|
|
|
path = "../vhost_rs"
|
|
|
|
features = ["vhost-user-slave"]
|
|
|
|
|