-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 943 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "stm32maple"
version = "0.1.0"
edition = "2021"
[dependencies]
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.3"
defmt = "0.3.8"
defmt-rtt = "0.4.1"
embassy-executor = { version = "0.6.0", path = "../embassy/embassy-executor", features = [
"defmt",
"integrated-timers",
"arch-cortex-m",
"executor-thread",
"executor-interrupt",
] }
embassy-stm32 = { version = "0.1.0", path = "../embassy/embassy-stm32", features = [
"defmt",
"stm32f103cb",
"time",
"time-driver-any",
"exti",
"memory-x",
"unstable-pac",
] }
embassy-sync = { version = "0.6.0", path = "../embassy/embassy-sync" }
embassy-time = { version = "0.3.2", path = "../embassy/embassy-time", features = [
"defmt",
"defmt-timestamp-uptime",
"tick-hz-32_768",
] }
panic-probe = { version = "0.3", features = ["print-defmt"] }
[profile.release]
debug = "full"