46 lines
850 B
TOML
46 lines
850 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 = "2018"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.6.2"
|
|
cortex-m-rt = "0.6.12"
|
|
panic-halt = "0.2.0"
|
|
embedded-hal = "0.2.3"
|
|
nb = "0.1.2"
|
|
ssd1306 = "0.3.1"
|
|
switch-hal = "0.3.2"
|
|
|
|
[dependencies.arrayvec]
|
|
version = "0.5.1"
|
|
default-features = false
|
|
|
|
[dependencies.embedded-graphics]
|
|
version = "0.6.1"
|
|
|
|
[dependencies.stm32f1]
|
|
version = "0.10.0"
|
|
features = ["stm32f103", "rt"]
|
|
|
|
[dependencies.stm32f1xx-hal]
|
|
version = "0.5.3"
|
|
features = ["rt", "stm32f103", "medium"]
|
|
|
|
[dependencies.either]
|
|
default-features = false
|
|
version = "1.5.3"
|
|
|
|
[[bin]]
|
|
name = "blue_pill_more"
|
|
test = false
|
|
bench = false
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
debug = true
|