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

Cargo.toml 381B

123456789101112131415161718
  1. [package]
  2. name = "hackamp-firmware"
  3. version = "0.1.0"
  4. authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
  5. edition = "2018"
  6. [dependencies]
  7. cortex-m = "0.6"
  8. cortex-m-rt = "0.6"
  9. cortex-m-rtic = "0.5.3"
  10. embedded-hal = "0.2.3"
  11. panic-semihosting = "0.5"
  12. stm32f4xx-hal = { version = "0.8.3", features = ["stm32f429", "usb_hs"] }
  13. [profile]
  14. [profile.release]
  15. debug = true
  16. lto = true