crosvm/qcow_utils/Cargo.toml
Dylan Reid cd9f86b299 qcow: Add a utility program for qcow analysis
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>
2018-09-19 15:40:06 -07:00

19 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" }