1234567891011121314151617181920212223242526272829303132333435 |
- [package]
- name = "traffic-light-arduino-uno"
- version = "0.1.0"
- authors = ["Felix Bytow <drako@drako.guru>"]
- edition = "2021"
- license = "MIT"
- [[bin]]
- name = "traffic-light-arduino-uno"
- test = false
- bench = false
- [dependencies]
- panic-halt = "1.0.0"
- ufmt = "0.2.0"
- nb = "1.1.0"
- embedded-hal = "1.0"
- [dependencies.arduino-hal]
- git = "https://github.com/rahix/avr-hal"
- rev = "fafaf587a32a4500239fd073f89d1b9c36b48092"
- features = ["arduino-uno"]
- # Configure the build for minimal size - AVRs have very little program memory
- [profile.dev]
- panic = "abort"
- lto = true
- opt-level = "s"
- [profile.release]
- panic = "abort"
- codegen-units = 1
- debug = true
- lto = true
- opt-level = "s"
|