Cargo.toml 653 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. authors = ["Kevin Lee <Kevin@0x7D.com>"]
  3. edition = "2018"
  4. readme = "README.md"
  5. name = "nixie-clock-in-8"
  6. version = "0.1.0"
  7. [dependencies]
  8. cortex-m = "0.6.0"
  9. cortex-m-rt = "0.6.10"
  10. cortex-m-rtic = "0.5.8"
  11. cortex-m-semihosting = "0.3.3"
  12. tock-registers = "0.7.0"
  13. field-offset = "0.3.4"
  14. stm32l4xx-hal = { version = "0.6.0", features = ["stm32l4x2", "rt"] }
  15. [profile.release]
  16. codegen-units = 1 # better optimizations
  17. debug = true # symbols are nice and they don't increase the size on Flash
  18. lto = true # better optimizations
  19. [[bin]]
  20. name = "nixie-clock-in-8"
  21. path = "src/main.rs"
  22. [[bin]]
  23. name = "nixie-clock-in-8-rtic"
  24. path = "src/main_rtic.rs"