mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
ea5ffed771
BUG=b:256951877 TEST=builds Change-Id: Iea6ab37489e87b1c8ca3c33fbf4a0d974a9b59ca Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4021591 Reviewed-by: Vikram Auradkar <auradkar@google.com> Commit-Queue: Noah Gold <nkgold@google.com>
28 lines
706 B
TOML
28 lines
706 B
TOML
[package]
|
|
name = "metrics"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
kiwi = ["libc", "serde_json", "sync"]
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base = { path = "../base" }
|
|
cfg-if = "*"
|
|
libc = { version = "*", optional = true }
|
|
protobuf = { version = "2.24", features = [ "with-serde" ] }
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = { version = "*", optional = true }
|
|
sync = { path = "../common/sync", optional = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
chrono = { version = "*" }
|
|
winapi = { version = "*" }
|
|
win_util = { path = "../win_util" }
|
|
wmi = { version = "^0.9" }
|
|
|
|
|
|
[build-dependencies]
|
|
proto_build_tools = { path = "../proto_build_tools" }
|