reflow-firmware3.0/Cargo.toml

32 lines
976 B
TOML

[package]
authors = ["sebastian"]
edition = "2018"
readme = "README.md"
name = "reflow-firmware"
version = "0.1.0"
default-features = false
[dependencies]
cortex-m = "0.6"
cortex-m-rt = "0.6"
stm32f1xx-hal = { version = "0.6.1", features = ["stm32f103", "rt"] }
embedded-hal = {version = "0.2.3", feature = ["unproven"]}
rtt-target = {version = "0.2.2", features = ["cortex-m"]}
st7735-lcd = { git = "https://github.com/LongHairedHacker/st7735-lcd-rs.git", branch = "release-display-interface"}
embedded-graphics = "0.6.2"
tinybmp = {version ="0.2.3", features = ["graphics"]}
profont = "0.4.0"
arrayvec = {version = "0.5.1", default-features = false}
num-traits = {version = "0.2.14", default-features = false }
# 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