crosvm/common/data_model/Cargo.toml
Zihan Chen 8a7550c40a crosvm: Partially convert DataInit to zerocopy (1/n)
Thie effort is splitted into multiple CLs, to reduce change size
and also make bisecing breakages easier.

TESTED=CQ only

BUG=b:204409584

Change-Id: Ie90f171bd5f74b732df3129e94733f3b34621092
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4210751
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Zihan Chen <zihanchen@google.com>
2023-02-02 19:28:57 +00:00

20 lines
543 B
TOML

[package]
name = "data_model"
version = "0.1.1-alpha.1"
authors = ["The Chromium OS Authors"]
edition = "2021"
include = ["src/**/*", "Cargo.toml", "LICENSE"]
description = "[highly unstable] data model for virtualization"
license-file = "LICENSE"
[dependencies]
static_assertions = "1.1"
cfg-if = "1.0.0"
libc = "0.2.116"
remain = "0.2"
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.20"
zerocopy = "*"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["everything", "std", "impl-default"] }