2021-09-26 15:08:22 +00:00
|
|
|
[package]
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2021-09-26 15:08:22 +00:00
|
|
|
name = "embassy-stm32f1-examples"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-22 19:46:09 +00:00
|
|
|
embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
|
2022-08-17 21:40:16 +00:00
|
|
|
embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["defmt", "integrated-timers"] }
|
|
|
|
embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-32768hz"] }
|
2022-02-12 01:26:15 +00:00
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32f103c8", "unstable-pac", "memory-x", "time-driver-any"] }
|
2022-05-29 22:36:30 +00: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 15:08:22 +00:00
|
|
|
|
2021-11-15 16:19:19 +00:00
|
|
|
defmt = "0.3"
|
|
|
|
defmt-rtt = "0.3"
|
2021-09-26 15:08:22 +00:00
|
|
|
|
2022-08-14 21:16:06 +00:00
|
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
2021-09-26 15:08:22 +00:00
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
embedded-hal = "0.2.6"
|
2021-11-15 16:19:19 +00:00
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
2021-09-26 15:08:22 +00: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 15:03:25 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = "s"
|