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

6
Cargo.lock generated
View File

@@ -1460,14 +1460,20 @@ name = "vhost_user_fs"
version = "0.1.0"
dependencies = [
"bitflags 1.2.1",
"clap",
"epoll",
"futures",
"libc",
"log 0.4.8",
"seccomp",
"tempdir",
"vhost",
"vhost_user_backend",
"virtio-bindings",
"virtio-devices",
"vm-memory",
"vm-virtio",
"vmm-sys-util",
]
[[package]]