mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-01-12 16:45:31 +00:00
cd9f86b299
This program makes figuring out the state of a qcow file easier. Change-Id: If297eb0cd835a86d8f284d3aef3d7e962e095726 Signed-off-by: Dylan Reid <dgreid@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1207455 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
18 lines
301 B
TOML
18 lines
301 B
TOML
[package]
|
|
name = "qcow_utils"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[lib]
|
|
path = "src/qcow_utils.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[[bin]]
|
|
name = "qcow_img"
|
|
path = "src/qcow_img.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|
|
qcow = { path = "../qcow" }
|
|
sys_util = { path = "../sys_util" }
|