mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
a360baa819
system_api bindings have been regenerated with protobuf 3.2; this should be okay to land before the full ChromeOS system_api migration, since crosvm always uses its own copy of the bindings rather than the ones provided by the dev-rust/system_api package. The protoc-rust crate is replaced with protobuf_codegen in 3.x. BUG=b:277243607 BUG=b:279834784 TEST=tools/dev_container tools/presubmit Change-Id: I6aad45ded2639d7506a7238800584bebab196455 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4405309 Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Noah Gold <nkgold@google.com>
36 lines
890 B
TOML
36 lines
890 B
TOML
[package]
|
|
name = "disk"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/disk.rs"
|
|
|
|
[features]
|
|
android-sparse = []
|
|
composite-disk = ["crc32fast", "protos", "protobuf", "uuid"]
|
|
qcow = []
|
|
|
|
[dependencies]
|
|
async-trait = "*"
|
|
base = { path = "../base" }
|
|
cfg-if = "1.0.0"
|
|
crc32fast = { version = "1.2.1", optional = true }
|
|
cros_async = { path = "../cros_async" }
|
|
data_model = { path = "../common/data_model" }
|
|
libc = "*"
|
|
protobuf = { version = "3.2", optional = true }
|
|
protos = { path = "../protos", features = ["composite-disk"], optional = true }
|
|
remain = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "*"
|
|
tempfile = "3"
|
|
uuid = { version = "1", features = ["v4"], optional = true }
|
|
vm_memory = { path = "../vm_memory" }
|
|
zerocopy = "*"
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|