Updates the requirements on [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) to permit the latest version. - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vmm-sys-util/compare/v0.8.0...v0.9.0) --- updated-dependencies: - dependency-name: vmm-sys-util dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
694 B
TOML
21 lines
694 B
TOML
[package]
|
|
name = "vhost-user-backend"
|
|
version = "0.1.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
keywords = ["vhost-user", "virtio"]
|
|
description = "A framework to build vhost-user backend service daemon"
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
epoll = ">=4.0.1"
|
|
libc = ">=0.2.39"
|
|
log = ">=0.4.6"
|
|
vhost = { version = "0.2", features = ["vhost-user-slave"] }
|
|
virtio-bindings = "0.1"
|
|
virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio", rev = "6013dd9" }
|
|
vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic"]}
|
|
vmm-sys-util = "0.9"
|
|
|
|
[dev-dependencies]
|
|
vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic", "backend-bitmap"]}
|