vhost_user_fs: Move binary into vhost_user_fs crate

The binary is still built in the same location but the source code and
the dependencies for it come from the vhost_user_fs crate itself.

The binary will be built with:

`cargo build --all --bin vhost_user_fs` or just `cargo build --all`

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2020-07-03 15:14:36 +01:00
committed by Samuel Ortiz
parent b8be6bab16
commit d6a05ceabb
3 changed files with 14 additions and 2 deletions
Generated
+6
View File
@@ -1460,14 +1460,20 @@ name = "vhost_user_fs"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bitflags 1.2.1", "bitflags 1.2.1",
"clap",
"epoll",
"futures",
"libc", "libc",
"log 0.4.8", "log 0.4.8",
"seccomp", "seccomp",
"tempdir", "tempdir",
"vhost", "vhost",
"vhost_user_backend",
"virtio-bindings",
"virtio-devices", "virtio-devices",
"vm-memory", "vm-memory",
"vm-virtio", "vm-virtio",
"vmm-sys-util",
] ]
[[package]] [[package]]
+8 -2
View File
@@ -6,12 +6,18 @@ edition = "2018"
[dependencies] [dependencies]
bitflags = "1.1.0" bitflags = "1.1.0"
clap = { version = "2.33.1", features=["wrap_help"] }
epoll = ">=4.0.1"
futures = { version = "0.3.5", features = ["thread-pool"] }
libc = "0.2.71" libc = "0.2.71"
log = "0.4.8" log = "0.4.8"
# Match the version in vmm # Match the version in vmm
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" }
tempdir= "0.3.7" tempdir = "0.3.7"
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]}
virtio-devices = { path = "../virtio-devices" } virtio-devices = { path = "../virtio-devices" }
vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] }
vhost_user_backend = { path = "../vhost_user_backend"}
vm-memory = "0.2.1" vm-memory = "0.2.1"
vm-virtio = { path = "../vm-virtio" } vm-virtio = { path = "../vm-virtio" }
vhost_rs = { git = "https://github.com/cloud-hypervisor/vhost", branch = "dragonball", package = "vhost", features = ["vhost-user-slave"] } vmm-sys-util = "0.6.1"