-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (71 loc) · 2.03 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
edition = "2021"
name = "sensor-vertigo"
version = "0.1.0"
[dependencies]
cortex-m = { version = "0.7.7", features = [
"inline-asm",
"critical-section-single-core",
] }
cortex-m-rt = "0.6.15"
defmt = { version = "0.3.8" }
defmt-rtt = { version = "0.4.1" }
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
static_cell = { version = "2.1.0", features = ["nightly"] }
embedded-hal-async = { version = "1", features = ["defmt-03"] }
[dependencies.embassy-time]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["tick-hz-32_768", "defmt", "defmt-timestamp-uptime"]
[dependencies.embassy-sync]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["defmt"]
[dependencies.embassy-futures]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["defmt"]
[dependencies.embassy-executor]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = [
"arch-cortex-m",
"executor-thread",
"integrated-timers",
"nightly",
"defmt",
]
[dependencies.embassy-embedded-hal]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["defmt"]
[dependencies.embassy-usb]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["defmt", "max-interface-count-4", "max-handler-count-4"]
[dependencies.embassy-stm32-wpan]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = ["stm32wb55vg", "defmt", "ble"]
[dependencies.embassy-stm32]
git = "https://github.com/embassy-rs/embassy"
rev = "eb91089a6c1d2a0fe23f9ef27dc9330cca08d441"
features = [
"memory-x",
"stm32wb55vg",
"time-driver-any",
"exti",
"unstable-pac",
"defmt",
]
[profile.dev]
debug = true
lto = false
opt-level = 0
incremental = true
[profile.dev.package."*"]
opt-level = "z"
[profile.release]
debug = false
lto = true
opt-level = "z"