-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 929 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (25 loc) · 929 Bytes
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
[package]
name = "iamcar"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
embassy-stm32 = { version = "0.2.0", features = [ "defmt", "stm32f103cb", "unstable-pac", "time-driver-any" ] }
embassy-sync = { version = "0.6.2", features = [ "defmt" ] }
embassy-executor = { version = "0.7.0", features = [ "arch-cortex-m", "executor-thread", "defmt" ] }
embassy-time = { version = "0.4.0", features = [ "defmt", "defmt-timestamp-uptime", "tick-hz-32_768" ] }
embassy-futures = { version = "0.1.0" }
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.7", features = [ "inline-asm", "critical-section-single-core"] }
cortex-m-rt = "0.7.5"
embedded-hal = "1.0.0"
panic-probe = { version = "0.3", features = [ "print-defmt" ] }
heapless = { version = "0.8", default-features = false }
nb = "1.0.0"
static_cell = "2.0.0"
embedded-nrf24l01 = "0.2.0"
[profile.dev]
opt-level = "s"
[profile.release]
debug = 2