mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-08 12:38:21 +00:00
This allows the use of newer versions of vm-memory and matches with other crates (e.g. vhost, vhost-user-backend, etc) who also have such a relaxed vm-memory dependency. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
33 lines
1023 B
TOML
33 lines
1023 B
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 = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = ">=3.0", features = ["derive"] }
|
|
env_logger = ">=0.9"
|
|
libc = ">=0.2.95"
|
|
log = ">=0.4.6"
|
|
thiserror = "1.0"
|
|
vhost = { version = "0.4", features = ["vhost-user-slave"] }
|
|
vhost-user-backend = "0.3"
|
|
virtio-bindings = ">=0.1"
|
|
virtio-queue = "0.2"
|
|
vm-memory = ">=0.7"
|
|
vmm-sys-util = "=0.9.0"
|
|
|
|
[target.'cfg(target_env = "gnu")'.dependencies]
|
|
libgpiod = { git = "https://github.com/vireshk/libgpiod" }
|
|
|
|
[dev-dependencies]
|
|
virtio-queue = { version = "0.2", features = ["test-utils"] }
|
|
vm-memory = { version = ">=0.7.0", features = ["backend-mmap", "backend-atomic"] }
|