summary refs log tree commit diff
path: root/qcow_utils/Cargo.toml
blob: 88326db5027c4e5be959ffd8d2de348599c36956 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "qcow_utils"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2018"

[lib]
path = "src/qcow_utils.rs"
crate-type = ["cdylib"]

[[bin]]
name = "qcow_img"
path = "src/qcow_img.rs"

[dependencies]
getopts = "*"
libc = "*"
disk = { path = "../disk" }
qcow = { path = "../qcow" }
sys_util = { path = "../sys_util" }