• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "data_model"
3version = "0.1.1-alpha.1"
4authors = ["The Chromium OS Authors"]
5edition = "2021"
6include = ["src/**/*", "Cargo.toml", "LICENSE"]
7description = "[highly unstable] data model for virtualization"
8license-file = "LICENSE"
9
10[dependencies]
11static_assertions = "1.1"
12cfg-if = "1.0.0"
13libc = "0.2.116"
14remain = "0.2"
15serde = { version = "1", features = ["derive"] }
16thiserror = "1.0.20"
17zerocopy = "*"
18
19[target.'cfg(windows)'.dependencies]
20winapi = { version = "0.3.9", features = ["everything", "std", "impl-default"] }
21