mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-27 03:18:57 +00:00
Rather incongruously the common VIRTIO feature flags where part of the net binding. Now that the new binding are out we can update them to something generic. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-gpio"
|
|
version = "0.1.0"
|
|
authors = ["Viresh Kumar <viresh.kumar@linaro.org>"]
|
|
description = "vhost gpio backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["gpio", "vhost", "virt", "backend"]
|
|
license = "Apache-2.0 OR BSD-3-Clause"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
vhost = { version = "0.6", features = ["vhost-user-slave"] }
|
|
vhost-user-backend = "0.8"
|
|
virtio-bindings = "0.2"
|
|
virtio-queue = "0.7"
|
|
vm-memory = "0.10"
|
|
vmm-sys-util = "0.11"
|
|
|
|
[target.'cfg(target_env = "gnu")'.dependencies]
|
|
libgpiod = { git = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/", rev = "d8d3a84b2ddf" }
|
|
|
|
[dev-dependencies]
|
|
virtio-queue = { version = "0.7", features = ["test-utils"] }
|
|
vm-memory = { version = "0.10", features = ["backend-mmap", "backend-atomic"] }
|