1[package] 2name = "power_monitor" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7[features] 8powerd = ["dbus", "system_api"] 9 10[dependencies] 11base = { path = "../base" } 12dbus = { version = "0.9", optional = true } 13protobuf = "3.2" 14remain = "0.2" 15system_api = { path = "../system_api", optional = true } 16thiserror = "1.0.20" 17 18[build-dependencies] 19proto_build_tools = { path = "../proto_build_tools" } 20