31 lines
816 B
TOML
31 lines
816 B
TOML
[package]
|
|
name = "blue_pill_more"
|
|
version = "0.1.0"
|
|
authors = ["Levi Pearson <levipearson@gmail.com>"]
|
|
description = "Crate for STM32F103 Blue Pill boards with peripherals"
|
|
categories = ["embedded", "no-std"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7.4"
|
|
cortex-m-rt = "0.7.1"
|
|
embedded-hal = "0.2.3"
|
|
stm32f1xx-hal = { version = "0.8.0", features = ["rt", "stm32f103", "medium"] }
|
|
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
|
|
panic-rtt-target = { version = "0.1.0", features = ["cortex-m"] }
|
|
switch-hal = "0.4.0"
|
|
arrayvec = { version = "0.7.2", default-features = false }
|
|
ssd1306 = "0.7.0"
|
|
embedded-graphics = "0.7.1"
|
|
either = { version = "1.5.3", default-features = false }
|
|
|
|
[[bin]]
|
|
name = "blue_pill_more"
|
|
test = false
|
|
bench = false
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
debug = true
|