blue_pill_rtic/Cargo.toml

24 lines
588 B
TOML
Raw Normal View History

2020-07-08 04:55:16 +00:00
[package]
name = "blue_pill_rtic"
2020-07-08 04:55:16 +00:00
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"
2020-07-08 04:55:16 +00:00
[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"] }
2022-03-09 11:00:10 +00:00
stm32f1xx-hal = { version = "0.9.0", features = ["rt", "stm32f103", "medium"] }
2020-07-08 04:55:16 +00:00
[[bin]]
name = "blue_pill_rtic"
2020-07-08 04:55:16 +00:00
test = false
bench = false
[profile.release]
lto = true
codegen-units = 1
debug = true