bluepill-rust-blinky/Cargo.toml

19 lines
451 B
TOML
Raw Normal View History

2024-02-27 22:55:50 +00:00
[package]
2024-02-27 23:17:32 +00:00
name = "bluepill-rust-blinky"
2024-02-27 22:55:50 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = "1.0.0"
nb = "1"
cortex-m = "0.7.6"
cortex-m-rt = "0.7.1"
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
panic-halt = "0.2.0"
[dependencies.stm32f1xx-hal]
version = "0.10.0"
2024-02-27 23:17:32 +00:00
features = ["rt", "stm32f103", "medium"]