25 lines
838 B
TOML
25 lines
838 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]
|
|
defmt-ringbuf = { path = "../defmt-ringbuf", optional = true }
|
|
|
|
embedded-hal = "1.0.0"
|
|
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
|
|
stm32f1xx-hal = { version = "0.10.0", features = ["rt", "stm32f103", "medium"] }
|
|
nb = "1"
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = { version = "0.7.1", features = ["device"] }
|
|
cortex-m-rtic = "1.1.4"
|
|
systick-monotonic = "1.0.1"
|
|
|
|
defmt = { version = "0.3", features = ["encoding-rzcobs"] }
|
|
defmt-rtt = { version = "0.4", optional = true }
|
|
heapless = "0.8.0"
|
|
|
|
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
|
|
panic-halt = "0.2.0"
|