2019-06-14 20:17:22 +00:00
|
|
|
[package]
|
|
|
|
name = "vhost_rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Liu Jiang <gerry@linux.alibaba.com>"]
|
|
|
|
repository = "https://github.com/rust-vmm/vhost"
|
|
|
|
license = "Apache-2.0 or BSD-3-Clause"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
vhost-vsock = []
|
|
|
|
vhost-kern = ["vm-memory"]
|
|
|
|
vhost-user-master = []
|
|
|
|
vhost-user-slave = []
|
|
|
|
|
|
|
|
[dependencies]
|
2019-08-02 11:02:17 +00:00
|
|
|
bitflags = "1.1.0"
|
2020-02-20 23:34:30 +00:00
|
|
|
libc = "0.2.67"
|
2019-12-11 13:02:07 +00:00
|
|
|
vmm-sys-util = ">=0.3.1"
|
2019-06-14 20:17:22 +00:00
|
|
|
|
|
|
|
[dependencies.vm-memory]
|
|
|
|
git = "https://github.com/rust-vmm/vm-memory"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-02 11:02:17 +00:00
|
|
|
tempfile = "3.1.0"
|