mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-03 11:25:20 +00:00
a50c54671c
Rather than relying on shared memory for a temporary file for QCOW testing instead use tempfile crate to get a temporary file. The vector cache tests also need a trivial update after the refactor. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
20 lines
319 B
TOML
Executable File
20 lines
319 B
TOML
Executable File
[package]
|
|
name = "qcow"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
license = "BSD-3-Clause"
|
|
|
|
[lib]
|
|
path = "src/qcow.rs"
|
|
|
|
[dependencies]
|
|
byteorder = "*"
|
|
libc = "*"
|
|
log = "*"
|
|
remain = "*"
|
|
vmm-sys-util = { git = "https://github.com/rust-vmm/vmm-sys-util" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "*"
|