19 lines
284 B
TOML
19 lines
284 B
TOML
[package]
|
|
name = "qcow_utils"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/qcow_utils.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = ["qcow"]
|
|
qcow = []
|
|
|
|
[dependencies]
|
|
libc = "*"
|
|
disk = { path = "../disk" }
|
|
base = { path = "../base" }
|