crosvm/metrics/Cargo.toml
Noah Gold ea5ffed771 metrics: migrate to proto_build_tools.
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>
2022-11-12 01:02:23 +00:00

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" }