Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 792B

12345678910111213141516171819202122232425
  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"
  17. tokio = { version = "0.2", features = [ "full" ] }
  18. sysfs_gpio = { version = "0.5.4", features = [ "use_tokio" ] }
  19. futures = "0.3.5"
  20. futures-util = "0.3.5"
  21. [patch.crates-io]
  22. sysfs_gpio = { git = "https://github.com/mgottschlag/rust-sysfs-gpio", branch = "new-futures" }