2022-05-23 20:18:04 +00:00
|
|
|
[package]
|
|
|
|
name = "metrics"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[features]
|
2022-06-15 21:32:30 +00:00
|
|
|
kiwi = ["libc", "serde_json", "sync"]
|
2022-05-23 20:18:04 +00:00
|
|
|
|
|
|
|
[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"
|