설명 없음
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 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
  3. categories = ["embedded", "no-std"]
  4. description = "smarthome base station firmware"
  5. keywords = ["arm", "cortex-m"]
  6. license = "MIT"
  7. name = "display-firmware"
  8. version = "0.0.1"
  9. build = "build.rs"
  10. edition = "2018"
  11. [dependencies]
  12. cortex-m = "0.6.2"
  13. cortex-m-rt = { version = "0.6.12", features = ["device"] }
  14. cortex-m-rtfm = "0.5.1"
  15. mkl25z4 = { version = "0.0.3", features = ["rt"] }
  16. #panic-halt = "0.2.0"
  17. panic-semihosting = "0.5.3"
  18. cortex-m-semihosting = "0.3.5"
  19. mkl25z4-hal = { git = "https://github.com/mgottschlag/mkl25z4-hal" }
  20. embedded-hal = "0.2.3"
  21. nb = "0.1.2"
  22. bme280 = { git = "https://github.com/mgottschlag/bme280-rs", branch = "destroy" }
  23. embedded-nrf24l01 = { git = "https://github.com/mgottschlag/embedded-nrf24l01", branch = "wip" }
  24. epd-waveshare = { git = "https://github.com/mgottschlag/epd-waveshare", branch = "wip" }
  25. tinygfx = { git = "https://github.com/mgottschlag/tinygfx" }
  26. protocol = { path = "../../common/rust-protocol" }
  27. [dependencies.void]
  28. default-features = false
  29. version = "1.0.2"
  30. [build-dependencies]
  31. tinygfx-assets = { git = "https://github.com/mgottschlag/tinygfx" }
  32. [profile]
  33. [profile.release]
  34. debug = true
  35. lto = true