2020-11-23 21:32:03 +00:00
|
|
|
[package]
|
|
|
|
name = "{{project_name}}"
|
|
|
|
version = "{{version}}"
|
|
|
|
authors = ["{{author}} <{{author_email}}>"]
|
2022-06-15 03:34:22 +00:00
|
|
|
edition = "{{rust_edition}}"
|
2020-11-23 21:32:03 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-23 22:01:43 +00:00
|
|
|
stm32f1xx-hal = { version = "0.7", features = ["rt", "stm32f103" ] }
|
|
|
|
cortex-m = "0.7"
|
|
|
|
cortex-m-rt = { version = "0.6", features = ["device"] }
|
|
|
|
panic-semihosting = "0.5"
|