1[package] 2name = "qcow_utils" 3version = "0.1.0" 4authors = ["The Chromium OS Authors"] 5edition = "2018" 6 7[lib] 8path = "src/qcow_utils.rs" 9crate-type = ["cdylib"] 10 11[[bin]] 12name = "qcow_img" 13path = "src/qcow_img.rs" 14 15[dependencies] 16getopts = "*" 17libc = "*" 18disk = { path = "../disk" } 19base = { path = "../base" } 20