mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
98fcb96d6b
The previous configuration made us pull in three different versions of rand, and depending on "*" is a recipe for API incompatibility. crosvm-fuzz needs to match its rand version to the rand_core used in common/cros_fuzz, so that will be upgraded separately. BUG=b:236978141 TEST=cargo build TEST=emerge-hatch crosvm Change-Id: I655ed3f156e4ac43afa3122596f62e9caa43b4f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3722184 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Noah Gold <nkgold@google.com>
36 lines
843 B
TOML
36 lines
843 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" } # provided by ebuild
|
|
base_event_token_derive = { path = "base_event_token_derive", version = "*" }
|
|
data_model = { path = "../common/data_model" } # provided by ebuild
|
|
sync = { path = "../common/sync" } # provided by ebuild
|
|
|
|
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"
|
|
tempfile = "3"
|
|
thiserror = "1.0.20"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
rand = "0.8"
|
|
winapi = "*"
|
|
win_util = { path = "../win_util"}
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
regex = "*"
|