2021-09-26 17:08:22 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
name = "embassy-stm32f1-examples"
|
|
|
|
version = "0.1.0"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-31 03:16:56 +02:00
|
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-timestamp-uptime", "time-tick-32768hz"] }
|
2022-02-12 02:26:15 +01:00
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32f103c8", "unstable-pac", "memory-x", "time-driver-any"] }
|
2022-05-30 00:36:30 +02:00
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
|
|
|
embassy-usb-serial = { version = "0.1.0", path = "../../embassy-usb-serial", features = ["defmt"] }
|
2021-09-26 17:08:22 +02:00
|
|
|
|
2021-11-15 17:19:19 +01:00
|
|
|
defmt = "0.3"
|
|
|
|
defmt-rtt = "0.3"
|
2021-09-26 17:08:22 +02:00
|
|
|
|
|
|
|
cortex-m = "0.7.3"
|
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
embedded-hal = "0.2.6"
|
2021-11-15 17:19:19 +01:00
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
2021-09-26 17:08:22 +02:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
|
|
|
|
heapless = { version = "0.7.5", default-features = false }
|
|
|
|
nb = "1.0.0"
|
2021-12-29 16:03:25 +01:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = "s"
|