17 lines
596 B
TOML
17 lines
596 B
TOML
[package]
|
|
name = "rust-stm32"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[target.'cfg(target_arch = "arm")'.dependencies]
|
|
cortex-m = { version = "=0.7.7", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "=0.7.5"
|
|
cortex-m-semihosting = "=0.5.0"
|
|
embassy-executor = { version = "=0.9.1", features = ["arch-cortex-m", "executor-thread"] }
|
|
embassy-stm32 = { version = "=0.6.0", features = ["memory-x", "stm32f103c8", "time-driver-any"] }
|
|
embassy-time = "=0.5.1"
|
|
panic-probe = "=1.0.0"
|
|
stm32f1xx-hal = { version = "=0.11.0", features = ["medium", "stm32f103"] }
|