CAN, GPIO, RNG vhost-devices for virtio-loopback [v6]
[AGL/meta-agl-devel.git] / meta-egvirt / recipes-extended / vhost-device-can / vhost-device-can-0.1.0 / Cargo.toml
1 [package]
2 name = "vhost-device-can"
3 version = "0.0.1"
4 authors = ["Timos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>"]
5 description = "vhost can backend device"
6 repository = "https://github.com/rust-vmm/vhost-device"
7 readme = "README.md"
8 keywords = ["can", "vhost", "virt", "backend"]
9 license = "Apache-2.0 OR BSD-3-Clause"
10 edition = "2021"
11
12 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13
14 [features]
15 xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
16
17 [dependencies]
18 queues = "1.0.2"
19 socketcan = "3.2"
20 clap = { version = "4.2.5",  features = ["derive"] }
21 env_logger = "0.10"
22 libc = "0.2"
23 log = "0.4"
24 thiserror = "1.0"
25 vhost = { version = "0.8", features = ["vhost-user-slave"] }
26 vhost-user-backend = "0.10"
27 virtio-bindings = "0.2.1"
28 virtio-queue = "0.9"
29 vm-memory = "0.12"
30 vmm-sys-util = "0.11"
31
32 [dev-dependencies]
33 assert_matches = "1.5"
34 virtio-queue = { version = "0.9", features = ["test-utils"] }
35 vm-memory = { version = "0.12", features = ["backend-mmap", "backend-atomic"] }