Brak opisu
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.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 = "0.2.1"
  23. embedded-nrf24l01 = { git = "https://github.com/astro/embedded-nrf24l01" }
  24. epd-waveshare = { git = "https://github.com/mgottschlag/epd-waveshare.git", branch = "streaming" }
  25. tinygfx = { git = "https://github.com/mgottschlag/tinygfx" }
  26. [dependencies.void]
  27. default-features = false
  28. version = "1.0.2"
  29. [build-dependencies]
  30. tinygfx-assets = { git = "https://github.com/mgottschlag/tinygfx" }
  31. [profile]
  32. [profile.release]
  33. debug = true
  34. lto = true