-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1.23 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
[package]
name = "nrf52840-embassy"
version = "0.1.0"
edition = "2021"
[dependencies]
embassy-executor = { version = "0.5", features = ["task-arena-size-163840","arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
embassy-sync = { version = "0.5" }
embassy-nrf = { version = "0.1", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
embassy-time = { version = "0.3", features = ["defmt", "defmt-timestamp-uptime"] }
embassy-futures = { version = "0.1", features = ["defmt"] }
embassy-embedded-hal = { version = "0.1.0"}
embedded-hal-async = "1.0"
nrf-softdevice = { version = "0.1", features = ["ble-gatt-server", "defmt", "nrf52840", "s140", "ble-peripheral", "critical-section-impl"] }
nrf-softdevice-s140 = { version = "0.1.1" }
static_cell = "2.0"
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7" }
cortex-m-rt = "0.7"
alloc-cortex-m = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }
microfft = "0.5"
ssd1306 = "0.8"
embedded-graphics = "0.8"
embedded-storage = "0.3"
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["derive"]}
[profile.release]
# symbols are nice and they don't increase the size on Flash
debug = true
[profile.dev.package."*"]
opt-level = 2