mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-28 09:33:01 +00:00
8212e88f83
This function will be used by crash reporter to associate a unique id to a session. BUG=b:213153157 TEST=presubmit Change-Id: I5f17e023f8895a75062d80773d1aac6315ce4dcf Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3639685 Commit-Queue: Vikram Auradkar <auradkar@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com>
35 lines
740 B
TOML
35 lines
740 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"
|
|
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 = "*"
|