暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Cargo.toml 522B

123456789101112131415161718
  1. [package]
  2. name = "base-station"
  3. version = "0.1.0"
  4. authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. linux-embedded-hal = "0.3"
  9. embedded-nrf24l01 = { git = "https://github.com/mgottschlag/embedded-nrf24l01", branch = "wip" }
  10. embedded-hal = "0.2.3"
  11. mqtt-protocol = "0.8"
  12. env_logger = "0.7"
  13. log = "0.4"
  14. thiserror = "1.0"
  15. protocol = { path = "../../common/rust-protocol" }
  16. rand = "0.7.3"