Cargo.toml 282 B

123456789101112
  1. [package]
  2. name = "system_api"
  3. version = "0.1.0"
  4. authors = ["The ChromiumOS Authors"]
  5. edition = "2021"
  6. [lib]
  7. path = "src/system_api.rs"
  8. [target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
  9. dbus = { version = "0.9.7", features = ["stdfd"] }
  10. protobuf = "3.2"