[package] authors = ["sebastian"] edition = "2018" readme = "README.md" name = "reflow-firmware" version = "0.1.0" [dependencies] cortex-m = "0.6" cortex-m-rt = "0.6" stm32f1xx-hal = { version = "0.6.1", features = ["stm32f103", "rt"] } panic-semihosting = "0.5" embedded-hal = "0.2.3" rtt-target = {version = "0.2.2", features = ["cortex-m"]} st7735-lcd = { git = "https://github.com/LongHairedHacker/st7735-lcd-rs.git", branch = "fix-short-rectangles" } embedded-graphics = "0.6.2" tinybmp = {version ="0.2.3", features = ["graphics"]} # this lets you use `cargo fix`! [[bin]] name = "reflow-firmware" test = false bench = false [profile.release] codegen-units = 1 # better optimizations debug = true # symbols are nice and they don't increase the size on Flash lto = true # better optimizations