aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 79ba46f460ddf778538cbde7a8c425cb23eb2c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "virtio-queue"
version = "0.9.0"
authors = ["The Chromium OS Authors"]
description = "virtio queue implementation"
repository = "https://github.com/rust-vmm/vm-virtio"
keywords = ["virtio"]
readme = "README.md"
license = "Apache-2.0 OR BSD-3-Clause"
edition = "2021"

[features]
test-utils = []

[dependencies]
vm-memory = "0.12.0"
vmm-sys-util = "0.11.0"
log = "0.4.17"
virtio-bindings = { path="../virtio-bindings", version = "0.2.1" }

[dev-dependencies]
criterion = "0.3.0"
vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic"] }
memoffset = "0.7.1"

[[bench]]
name = "main"
harness = false