mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-12-25 20:45:00 +00:00
76968703ad
QCOW2 files will be used to store the VM's data on ChromeOS. Add support for basic reading and writing of qcow files. CQ-DEPEND=CL:872451 BUG=none TEST=qcow unit tests and use "qemu-image check" to verify generated qcow files. Change-Id: I4b9e77e58edca69f894ede19e79ebd2cd7b2623e Signed-off-by: Dylan Reid <dgreid@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/862628 Reviewed-by: Stephen Barber <smbarber@chromium.org>
14 lines
207 B
TOML
14 lines
207 B
TOML
[package]
|
|
name = "qcow"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[lib]
|
|
path = "src/qcow.rs"
|
|
|
|
[dependencies]
|
|
byteorder = "*"
|
|
libc = "*"
|
|
|
|
[dev-dependencies]
|
|
sys_util = { path = "../sys_util" }
|