vhost/Cargo.toml
dependabot[bot] 610d4ee95c build(deps): update nix requirement from 0.24 to 0.25
Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version.
- [Release notes](https://github.com/nix-rust/nix/releases)
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.24.0...v0.25.0)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-25 10:53:06 +03:00

23 lines
736 B
TOML

[package]
name = "vhost-user-backend"
version = "0.6.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]
libc = ">=0.2.39"
log = ">=0.4.6"
vhost = { version = "0.4", features = ["vhost-user-slave"] }
virtio-bindings = "0.1"
virtio-queue = "0.5.0"
vm-memory = {version = ">=0.7", features = ["backend-mmap", "backend-atomic"]}
vmm-sys-util = "0.10"
[dev-dependencies]
nix = "0.25"
vhost = { version = "0.4", features = ["vhost-user-master", "vhost-user-slave"] }
vm-memory = {version = ">=0.7", features = ["backend-mmap", "backend-atomic", "backend-bitmap"]}
tempfile = "3.2.0"