vhost-device/vsock/Cargo.toml
Stefano Garzarella a1daeec3bc vsock: update Cargo.toml dependencies
Update the dependencies aligning with the other crates
in this workspace.

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
2022-10-12 14:21:54 +02:00

28 lines
804 B
TOML

[package]
name = "vhost-user-vsock"
version = "0.1.0"
authors = ["Harshavardhan Unnibhavi <harshanavkis@gmail.com>"]
description = "A virtio-vsock device using the vhost-user protocol."
repository = "https://github.com/rust-vmm/vhost-device"
readme = "README.md"
keywords = ["vhost", "vsock"]
license = "Apache-2.0 OR BSD-3-Clause"
edition = "2018"
[dependencies]
byteorder = "1"
clap = { version = ">=3.0", features = ["yaml"] }
epoll = "4.3.1"
futures = { version = "0.3", features = ["thread-pool"] }
log = ">=0.4.6"
thiserror = "1.0"
vhost = { version = "0.5", features = ["vhost-user-slave"] }
vhost-user-backend = "0.7.0"
virtio-bindings = ">=0.1"
virtio-queue = "0.6"
vm-memory = ">=0.8"
vmm-sys-util = "=0.10.0"
[dev-dependencies]
virtio-queue = { version = "0.6", features = ["test-utils"] }