embassy/examples/stm32f0/Cargo.toml

20 lines
637 B
TOML
Raw Normal View History

2021-07-15 16:50:39 +00:00
[package]
name = "embassy-stm32f0-examples"
version = "0.1.0"
authors = ["Thales Fragoso <thales.fragosoz@gmail.com>"]
edition = "2018"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-10 22:10:46 +00:00
cortex-m = { version = "0.7.3", features = ["inline-asm"] }
cortex-m-rt = "0.7.0"
2021-11-15 16:19:19 +00:00
defmt = "0.3"
defmt-rtt = "0.3"
panic-probe = "0.3"
2021-09-10 22:10:46 +00:00
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
2021-07-15 16:50:39 +00:00
embassy = { path = "../../embassy", features = ["defmt"] }
embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-tim3"] }
2021-07-15 16:50:39 +00:00