mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
Motivation: * simplify and unify, align more with standard log facade * code reduction * remove hardcoded platform-specific things * a little more flexibility * easily allow lov level/filtering config as cli argument Note that there is more code removal than simply loc as updating tests added few loc Change-Id: I7beb4b2c28c3462553c6663b234ee38df79f59f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3657053 Tested-by: kokoro <noreply+kokoro@google.com> Auto-Submit: Anton Romanov <romanton@google.com> Commit-Queue: Anton Romanov <romanton@google.com> Reviewed-by: Michael Hoyle <mikehoyle@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
37 lines
779 B
TOML
37 lines
779 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 = "*"
|
|
env_logger = "0.9.0"
|
|
libc = "*"
|
|
log = "0.4"
|
|
once_cell = "1.7"
|
|
remain = "0.2"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
smallvec = "1.6.1"
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "1.0.20"
|
|
tempfile = "3"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
lazy_static = "*"
|
|
rand = "*"
|
|
winapi = "*"
|
|
win_util = { path = "../win_util"}
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
regex = "*"
|