2019-10-31 17:16:28 +00:00
|
|
|
[package]
|
|
|
|
name = "vhost_user_fs"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-10-31 17:26:24 +00:00
|
|
|
bitflags = "1.1.0"
|
2020-08-14 02:32:59 +00:00
|
|
|
clap = { version = "2.33.3", features=["wrap_help"] }
|
2020-07-03 14:14:36 +00:00
|
|
|
epoll = ">=4.0.1"
|
2020-10-23 20:01:53 +00:00
|
|
|
futures = { version = "0.3.7", features = ["thread-pool"] }
|
2020-10-05 05:28:19 +00:00
|
|
|
libc = "0.2.79"
|
2020-07-16 01:25:13 +00:00
|
|
|
log = "0.4.11"
|
2020-05-01 16:26:07 +00:00
|
|
|
# Match the version in vmm
|
2020-08-06 06:10:10 +00:00
|
|
|
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.22.0" }
|
2020-07-03 14:14:36 +00:00
|
|
|
tempdir = "0.3.7"
|
|
|
|
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]}
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio-devices = { path = "../virtio-devices" }
|
2020-09-11 09:50:07 +00:00
|
|
|
vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }
|
2020-07-03 14:14:36 +00:00
|
|
|
vhost_user_backend = { path = "../vhost_user_backend"}
|
2020-10-02 15:04:13 +00:00
|
|
|
vm-memory = "0.3.0"
|
2019-10-31 21:55:06 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2020-07-03 14:14:36 +00:00
|
|
|
vmm-sys-util = "0.6.1"
|