crosvm/qcow_utils/Cargo.toml
Dylan Reid 6ecbbfd723 Add qcow_utils for exposing qcow functions as a C library
This C library will be use by the VM launcher to create the qcow2 files
used for persistent VM data.

CQ-DEPEND=CL:884263
BUG=none
TEST=cargo test --all -- --test-threads=1

Change-Id: Ibd7f71d2e3f1f72f781978f014865d2161f033f5
Signed-off-by: Dylan Reid <dgreid@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/875116
2018-02-01 21:29:31 -08:00

13 lines
199 B
TOML

[package]
name = "qcow_utils"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
[lib]
path = "src/qcow_utils.rs"
crate-type = ["cdylib"]
[dependencies]
libc = "*"
qcow = { path = "../qcow" }