1[package] 2name = "metrics" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[dependencies] 8anyhow = "*" 9base = { path = "../base" } 10cfg-if = "*" 11serde = { version = "1", features = ["derive"] } 12sync = { path = "../common/sync" } 13metrics_events = { path = "../metrics_events" } 14metrics_product = { path = "../vendor/generic/metrics", package = "metrics_generic" } 15 16[target.'cfg(windows)'.dependencies] 17chrono = { version = "0.4.34", default-features = false, features = ["now"] } 18winapi = { version = "*" } 19