18 lines
538 B
TOML
18 lines
538 B
TOML
[package]
|
|
name = "bluepill-rs"
|
|
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 = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = { version = "0.7.1", features = ["device"] }
|
|
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
|
|
panic-halt = "0.2.0"
|
|
|
|
[dependencies.stm32f1xx-hal]
|
|
version = "0.10.0"
|
|
features = ["rt", "stm32f103", "medium"]
|