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