Cargo.toml 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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-semihosting = "0.3.3"
  11. # panic-halt = "0.2.0"
  12. tock-registers = "0.7.0"
  13. # Uncomment for the panic example.
  14. # panic-itm = "0.4.1"
  15. # Uncomment for the allocator example.
  16. # alloc-cortex-m = "0.4.0"
  17. # Uncomment for the device example.
  18. # Update `memory.x`, set target to `thumbv7em-none-eabihf` in `.cargo/config`,
  19. # and then use `cargo build --examples device` to build it.
  20. # [dependencies.stm32f3]
  21. # features = ["stm32f303", "rt"]
  22. # version = "0.7.1"
  23. [dependencies.stm32l4xx-hal]
  24. version = "0.6.0"
  25. features = ["stm32l4x2", "rt"]
  26. # this lets you use `cargo fix`!
  27. # [[bin]]
  28. # name = "nixie-clock-in-8"
  29. # test = false
  30. # bench = false
  31. [profile.release]
  32. codegen-units = 1 # better optimizations
  33. debug = true # symbols are nice and they don't increase the size on Flash
  34. lto = true # better optimizations