bluepill-rust-blinky/bluepill-rs/Cargo.toml

26 lines
753 B
TOML
Raw Normal View History

2024-02-27 22:55:50 +00:00
[package]
2024-03-03 15:30:45 +00:00
name = "bluepill-rs"
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]
2024-03-12 17:03:28 +00:00
# main deps
2024-02-27 22:55:50 +00:00
embedded-hal = "1.0.0"
2024-03-08 16:59:02 +00:00
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
stm32f1xx-hal = { version = "0.10.0", features = ["rt", "stm32f103", "medium"] }
2024-02-27 22:55:50 +00:00
nb = "1"
2024-03-03 15:30:45 +00:00
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
cortex-m-rt = { version = "0.7.1", features = ["device"] }
2024-03-08 16:59:02 +00:00
cortex-m-rtic = "1.1.4"
systick-monotonic = "1.0.1"
2024-03-12 17:03:28 +00:00
# i2c_slave deps
2024-03-03 15:49:38 +00:00
heapless = "0.8.0"
2024-03-08 16:59:02 +00:00
2024-02-27 22:55:50 +00:00
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
2024-03-12 17:03:28 +00:00
cortex-m-semihosting = "0.5.0"
2024-02-27 22:55:50 +00:00
panic-halt = "0.2.0"
2024-03-12 17:03:28 +00:00
panic-semihosting = "0.6.0"