mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
6ecbbfd723
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
12 lines
199 B
TOML
12 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" }
|