| 12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "mega2560"
- version = "0.1.0"
- authors = ["Jake Kalstad <jakekalstad@gmail.com>"]
- edition = "2021"
- license = "MIT OR Apache-2.0"
- [[bin]]
- name = "mega2560"
- test = false
- bench = false
- [dependencies]
- panic-halt = "0.2.0"
- ag-lcd = "*"
- embedded-hal = "0.2.7"
- [dependencies.arduino-hal]
- git = "https://github.com/rahix/avr-hal"
- rev = "3b8f39fa2ec5e3359c7bedc33d982e75e8cc3700"
- features = ["arduino-mega2560"]
- # 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"
|