mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2025-12-28 16:29:45 +00:00
Bumps the rust-vmm group with 4 updates in the / directory: [vhost](https://github.com/rust-vmm/vhost), [vhost-user-backend](https://github.com/rust-vmm/vhost), [virtio-queue](https://github.com/rust-vmm/vm-virtio) and [vm-memory](https://github.com/rust-vmm/vm-memory). Updates `vhost` from 0.11.0 to 0.13.0 - [Release notes](https://github.com/rust-vmm/vhost/releases) - [Commits](https://github.com/rust-vmm/vhost/compare/vhost-v0.11.0...vhost-v0.13.0) Updates `vhost-user-backend` from 0.15.0 to 0.17.0 - [Release notes](https://github.com/rust-vmm/vhost/releases) - [Commits](https://github.com/rust-vmm/vhost/compare/vhost-user-backend-v0.15.0...vhost-user-backend-v0.17.0) Updates `virtio-queue` from 0.12.0 to 0.14.0 - [Release notes](https://github.com/rust-vmm/vm-virtio/releases) - [Commits](https://github.com/rust-vmm/vm-virtio/compare/virtio-queue-v0.12.0...virtio-queue-v0.14.0) Updates `vm-memory` from 0.14.1 to 0.16.1 - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vm-memory/compare/v0.14.1...v0.16.1) --- updated-dependencies: - dependency-name: vhost dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: vhost-user-backend dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: virtio-queue dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: vm-memory dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-input"
|
|
version = "0.1.0"
|
|
authors = ["Leo Yan <leo.yan@linaro.org>"]
|
|
description = "vhost input backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["virtio-input", "vhost-user", "vhost", "virtio", "rust-vmm"]
|
|
categories = ["virtualization"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
epoll = "4.3"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
rand = "0.8.5"
|
|
tempfile = "3.14"
|
|
thiserror = "2.0"
|
|
vhost = { version = "0.13", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.17"
|
|
virtio-bindings = "0.2.2"
|
|
virtio-queue = "0.14"
|
|
vm-memory = "0.16.1"
|
|
vmm-sys-util = "0.12"
|
|
evdev = "0.12"
|
|
nix = { version = "0.29", features = ["ioctl"] }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.14", features = ["test-utils"] }
|
|
vm-memory = { version = "0.16", features = ["backend-mmap", "backend-atomic"] }
|