1[package] 2name = "disk" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[lib] 8path = "src/disk.rs" 9 10[features] 11android-sparse = [] 12composite-disk = ["crc32fast", "protos", "protobuf", "uuid"] 13qcow = [] 14 15[dependencies] 16async-trait = "*" 17base = { path = "../base" } 18cfg-if = "1.0.0" 19crc32fast = { version = "1.2.1", optional = true } 20cros_async = { path = "../cros_async" } 21data_model = { path = "../common/data_model" } 22libc = "*" 23protobuf = { version = "3.2", optional = true } 24protos = { path = "../protos", features = ["composite-disk"], optional = true } 25remain = "*" 26serde = { version = "1", features = [ "derive" ] } 27sync = { path = "../common/sync" } 28thiserror = "*" 29tempfile = "3" 30uuid = { version = "1", features = ["v4"], optional = true } 31vm_memory = { path = "../vm_memory" } 32zerocopy = { version = "0.7", features = ["derive"] } 33 34[dependencies.futures] 35version = "*" 36default-features = false 37