mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
f7c42dc7d2
Bumps [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) from 0.6.1 to 0.7.0. - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vmm-sys-util/compare/v0.6.1...v0.7.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
23 lines
822 B
TOML
23 lines
822 B
TOML
[package]
|
|
name = "vhost_user_fs"
|
|
version = "0.1.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bitflags = "1.1.0"
|
|
clap = { version = "2.33.3", features=["wrap_help"] }
|
|
epoll = ">=4.0.1"
|
|
futures = { version = "0.3.8", features = ["thread-pool"] }
|
|
libc = "0.2.80"
|
|
log = "0.4.11"
|
|
# Match the version in vmm
|
|
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.22.0" }
|
|
tempdir = "0.3.7"
|
|
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]}
|
|
virtio-devices = { path = "../virtio-devices" }
|
|
vhost_rs = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }
|
|
vhost_user_backend = { path = "../vhost_user_backend"}
|
|
vm-memory = "0.3.0"
|
|
vm-virtio = { path = "../vm-virtio" }
|
|
vmm-sys-util = "0.7.0" |