mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-07 02:46:51 +00:00
This executes the script in https://crrev.com/c/3537257 BUG=b:223206469 TEST=presubmit Change-Id: I51176d02081a7130270cf1b2ebe7c58ef9056db3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3537258 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com>
32 lines
650 B
TOML
32 lines
650 B
TOML
[package]
|
|
name = "base"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
chromeos = []
|
|
|
|
[dependencies]
|
|
audio_streams = { path = "../common/audio_streams" }
|
|
data_model = { path = "../common/data_model" }
|
|
libc = "*"
|
|
remain = "0.2"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
smallvec = "1.6.1"
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "1.0.20"
|
|
tempfile = "3"
|
|
base_poll_token_derive = { path = "base_poll_token_derive" }
|
|
cfg-if = "*"
|
|
rand = "*"
|
|
chrono = "*"
|
|
regex = "*"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "*"
|
|
win_util = { path = "../win_util"}
|
|
|
|
[build-dependencies]
|
|
cc = "*"
|