mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-03 07:02:17 +00:00
Changes: - Update socketcan-rs to v3.3.1 which solve the issue regarding the CANFD messages: - https://github.com/socketcan-rs/socketcan-rs/pull/61 - Update Cargo.lock files under main and staging workspace Signed-off-by: Timos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "vhost-device-can"
|
|
version = "0.1.0"
|
|
authors = ["Timos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>"]
|
|
description = "vhost can backend device"
|
|
repository = "https://github.com/rust-vmm/vhost-device"
|
|
readme = "README.md"
|
|
keywords = ["can", "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
|
|
|
|
[features]
|
|
xen = ["vm-memory/xen", "vhost/xen", "vhost-user-backend/xen"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
queues = "1.0.2"
|
|
socketcan = "3.3.1"
|
|
vhost = { version = "0.11", features = ["vhost-user-backend"] }
|
|
vhost-user-backend = "0.15"
|
|
virtio-bindings = "0.2.2"
|
|
virtio-queue = "0.12"
|
|
vm-memory = "0.14.1"
|
|
vmm-sys-util = "0.12"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5"
|
|
virtio-queue = { version = "0.12", features = ["test-utils"] }
|
|
vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-atomic"] }
|