From 76968703ad9f5c4edb4c533026ee35b6bd54a3d2 Mon Sep 17 00:00:00 2001 From: Dylan Reid Date: Wed, 13 Dec 2017 09:09:40 -0800 Subject: Add qcow support crate 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 Reviewed-on: https://chromium-review.googlesource.com/862628 Reviewed-by: Stephen Barber --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 98c824c..759f352 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,7 @@ libc = "=0.2.34" byteorder = "=1.1.0" vm_control = { path = "vm_control" } data_model = { path = "data_model" } +qcow = { path = "qcow" } [target.'cfg(target_arch = "x86_64")'.dependencies] x86_64 = { path = "x86_64" } -- cgit 1.4.1