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 = []
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-08 17:49:51 +00:00
|
|
|
epoll = ">=4.0.1"
|
2021-03-30 11:27:20 +00:00
|
|
|
libc = "0.2.92"
|
2021-01-27 03:17:53 +00:00
|
|
|
log = "0.4.14"
|
2020-02-14 11:27:47 +00:00
|
|
|
virtio-bindings = "0.1.0"
|
2021-02-10 09:54:08 +00:00
|
|
|
vm-memory = "0.5.0"
|
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"
|
2021-02-25 09:46:27 +00:00
|
|
|
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }
|