mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 21:55:20 +00:00
1ddc8f2f0d
The vhost-user-fs or virtio-fs device allows files and directories to be shared between host and guest. This patch adds the implementation of this device to the cloud-hypervisor device model. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
28 lines
689 B
TOML
28 lines
689 B
TOML
[package]
|
|
name = "vm-virtio"
|
|
version = "0.1.0"
|
|
authors = ["Samuel Ortiz <sameo@linux.intel.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = "=1.2.1"
|
|
devices = { path = "../devices" }
|
|
epoll = "=4.0.1"
|
|
libc = ">=0.2.39"
|
|
log = "*"
|
|
net_gen = { path = "../net_gen" }
|
|
net_util = { path = "../net_util" }
|
|
pci = { path = "../pci" }
|
|
tempfile = ">=3.0.2"
|
|
virtio-bindings = { path = "../virtio-bindings" }
|
|
vm-allocator = { path = "../vm-allocator" }
|
|
vmm-sys-util = { git = "https://github.com/rust-vmm/vmm-sys-util" }
|
|
|
|
[dependencies.vhost_rs]
|
|
path = "../vhost_rs"
|
|
features = ["vhost-user-master"]
|
|
|
|
[dependencies.vm-memory]
|
|
git = "https://github.com/rust-vmm/vm-memory"
|
|
features = ["backend-mmap"]
|