24 lines
588 B
TOML
24 lines
588 B
TOML
[package]
|
|
name = "blue_pill_rtic"
|
|
version = "0.1.0"
|
|
authors = ["Levi Pearson <levipearson@gmail.com>"]
|
|
description = "Base binary crate for STM32F103 Blue Pill boards"
|
|
categories = ["embedded", "no-std"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m-rtic = "1.0.0"
|
|
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
|
|
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
|
|
stm32f1xx-hal = { version = "0.8.0", features = ["rt", "stm32f103", "medium"] }
|
|
|
|
[[bin]]
|
|
name = "blue_pill_rtic"
|
|
test = false
|
|
bench = false
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
debug = true
|