You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
561 B
28 lines
561 B
[package]
|
|
name = "disk"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/disk.rs"
|
|
|
|
[features]
|
|
composite-disk = ["protos", "protobuf"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
base = { path = "../base" }
|
|
libc = "*"
|
|
protobuf = { version = "2.3", optional = true }
|
|
remain = "*"
|
|
tempfile = "*"
|
|
cros_async = { path = "../cros_async" }
|
|
data_model = { path = "../data_model" }
|
|
protos = { path = "../protos", optional = true }
|
|
vm_memory = { path = "../vm_memory" }
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|