qcow: Add qcow support

Extracted from crosvm (commit:f82d632), with clippy fixes.

Signed-off-by: Chao Peng <chao.p.peng@linux.intel.com>
This commit is contained in:
Chao Peng
2019-04-29 19:32:56 +00:00
committed by Samuel Ortiz
parent c2c51dc9d1
commit 80ac3a84bb
7 changed files with 3000 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[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/sameo/vmm-sys-util" }