Use our vhost fork for all crates. It has SHMEM and GPU backend support. Add a Nix flake package for vhost-device-gpu with the virgl backend enabled. Also fixes duplicate imports in vhost-device-gpu/src/backend/virgl.rs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
844 B
TOML
30 lines
844 B
TOML
[package]
|
|
name = "vhost-device-scmi"
|
|
version = "0.4.0"
|
|
authors = ["Milan Zamazal <mzamazal@redhat.com>"]
|
|
description = "vhost-user SCMI backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["scmi", "vhost", "virt", "backend"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
itertools = "0.14"
|
|
log = "0.4"
|
|
thiserror = "2.0"
|
|
vhost = { git = "https://git.dsg.is/dsg/vhost.git", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = { git = "https://git.dsg.is/dsg/vhost.git" }
|
|
virtio-bindings = "0.2"
|
|
virtio-queue = "0.17"
|
|
vm-memory = "0.17.1"
|
|
vmm-sys-util = "0.15"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.17", features = ["test-utils"] }
|
|
|
|
[lints]
|
|
workspace = true
|