mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-09 05:44:07 +00:00
Bumps the rust-vmm group with 1 update in the / directory: [virtio-bindings](https://github.com/rust-vmm/vm-virtio). Bumps the rust-vmm group with 1 update in the /staging directory: [virtio-bindings](https://github.com/rust-vmm/vm-virtio). Updates `virtio-bindings` from 0.2.4 to 0.2.5 - [Release notes](https://github.com/rust-vmm/vm-virtio/releases) - [Commits](https://github.com/rust-vmm/vm-virtio/compare/virtio-bindings-v0.2.4...virtio-bindings-v0.2.5) Updates `virtio-bindings` from 0.2.4 to 0.2.5 - [Release notes](https://github.com/rust-vmm/vm-virtio/releases) - [Commits](https://github.com/rust-vmm/vm-virtio/compare/virtio-bindings-v0.2.4...virtio-bindings-v0.2.5) --- updated-dependencies: - dependency-name: virtio-bindings dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm - dependency-name: virtio-bindings dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-template"
|
|
version = "0.1.0"
|
|
authors = ["Viresh Kumar <viresh.kumar@linaro.org>"]
|
|
description = "Template for a vhost backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["template", "vhost", "virt", "backend"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
thiserror = "2.0"
|
|
vhost = { version = "0.13", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.17"
|
|
virtio-bindings = "0.2.5"
|
|
virtio-queue = "0.14"
|
|
vm-memory = "0.16.1"
|
|
vmm-sys-util = "0.12"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.14", features = ["test-utils"] }
|
|
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-atomic"] }
|