1[package] 2name = "virtio-queue" 3version = "0.11.0" 4authors = ["The Chromium OS Authors"] 5description = "virtio queue implementation" 6repository = "https://github.com/rust-vmm/vm-virtio" 7keywords = ["virtio"] 8readme = "README.md" 9license = "Apache-2.0 OR BSD-3-Clause" 10edition = "2021" 11 12[features] 13test-utils = [] 14 15[dependencies] 16vm-memory = "0.14.0" 17vmm-sys-util = "0.12.1" 18log = "0.4.17" 19virtio-bindings = { path="../virtio-bindings", version = "0.2.2" } 20 21[dev-dependencies] 22criterion = "0.5.1" 23vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] } 24memoffset = "0.9.0" 25 26[[bench]] 27name = "main" 28harness = false 29