Files
cloud-hypervisor/vm-virtio/Cargo.toml
Anatol Belski d24e2fd140 vm-virtio: checked_descriptor: Introduce unit_tests module
Add a unit_tests module with the first test for CheckedDescriptorIter,
covering the happy path where a valid single descriptor is yielded and
the iterator reports no failure. Wire up the virtio-bindings dev
dependency and local test helpers needed by the test.

Signed-off-by: Anatol Belski <anbelski@linux.microsoft.com>
2026-05-28 21:41:45 +00:00

25 lines
441 B
TOML

[package]
authors = ["The Cloud Hypervisor Authors"]
edition.workspace = true
name = "vm-virtio"
rust-version.workspace = true
version = "0.1.0"
[features]
default = []
[dependencies]
log = { workspace = true }
virtio-queue = { workspace = true }
vm-memory = { workspace = true, features = [
"backend-atomic",
"backend-bitmap",
"backend-mmap",
] }
[lints]
workspace = true
[dev-dependencies]
virtio-bindings = { workspace = true }