2022-05-23 20:18:04 +00:00
|
|
|
[package]
|
|
|
|
name = "metrics"
|
|
|
|
version = "0.1.0"
|
2022-12-29 21:24:33 +00:00
|
|
|
authors = ["The ChromiumOS Authors"]
|
2022-05-23 20:18:04 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
2024-07-02 21:55:02 +00:00
|
|
|
[features]
|
|
|
|
collect = []
|
|
|
|
experimental = []
|
|
|
|
|
2022-05-23 20:18:04 +00:00
|
|
|
[dependencies]
|
2024-05-21 22:37:42 +00:00
|
|
|
anyhow = "1"
|
2022-05-23 20:18:04 +00:00
|
|
|
base = { path = "../base" }
|
2024-05-21 22:37:42 +00:00
|
|
|
cfg-if = "1"
|
2023-06-08 17:18:43 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
sync = { path = "../common/sync" }
|
2024-03-27 06:36:42 +00:00
|
|
|
metrics_events = { path = "../metrics_events" }
|
2024-03-08 02:00:01 +00:00
|
|
|
metrics_product = { path = "../vendor/generic/metrics", package = "metrics_generic" }
|
2022-05-23 20:18:04 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-03-04 13:56:24 +00:00
|
|
|
chrono = { version = "0.4.34", default-features = false, features = ["now"] }
|
2024-05-21 22:37:42 +00:00
|
|
|
winapi = { version = "0.3" }
|