mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
Fixes a couple of files that were missing them. BUG=b:242605601 TEST=./tools/health-check --fix Change-Id: I620d6a939cb824e014002152584aacfc5dfdf7e8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3835648 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
27 lines
637 B
TOML
27 lines
637 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 = "*" }
|
|
wmi = { version = "^0.9" }
|
|
|
|
|
|
[build-dependencies]
|
|
protoc-rust = "2.24"
|