mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
c9ae4da251
These are not used in the downstream fork. Removing them lets us get rid of the build.rs file for the base crate. BUG=None TEST=tools/presubmit --all Change-Id: I8d8dfea77b0dc49d2179f0825edb4d1525d8724a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3617364 Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Noah Gold <nkgold@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
34 lines
692 B
TOML
34 lines
692 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" }
|
|
base_poll_token_derive = { path = "base_poll_token_derive" }
|
|
data_model = { path = "../common/data_model" }
|
|
|
|
cfg-if = "*"
|
|
chrono = "*"
|
|
libc = "*"
|
|
log = "0.4"
|
|
remain = "0.2"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
smallvec = "1.6.1"
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "1.0.20"
|
|
tempfile = "3"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
lazy_static = "*"
|
|
rand = "*"
|
|
winapi = "*"
|
|
win_util = { path = "../win_util"}
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
regex = "*"
|