-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (54 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
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
[package]
edition = "2021"
name = "tempsys-firmware"
version = "0.1.6"
authors = ["Fabio Mendes <[email protected]>"]
resolver = "2"
[[bin]]
name = "tempsys-firmware"
harness = false
[profile.release]
debug = true
[profile.dev]
opt-level = "z"
[dependencies]
defmt = "0.3"
defmt-rtt = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }
embedded-hal = "1.0.0"
embedded-hal-async = "1.0.0"
embedded-io = "0.6.1"
embedded-io-async = "0.6.1"
embedded-storage = "0.3.1"
cortex-m = "0.7.7"
cortex-m-rt = "0.7.3"
futures = { version = "0.3", default-features = false }
embassy-executor = { version = "0.6.0", features = [
"task-arena-size-1024",
"arch-cortex-m",
"executor-thread",
"defmt",
"integrated-timers",
"executor-interrupt",
] }
embassy-sync = { version = "0.6.0" }
embassy-time = { version = "0.3.2", features = [
"defmt",
"defmt-timestamp-uptime",
] }
embassy-nrf = { version = "0.2.0", features = [
"defmt",
"gpiote",
"time-driver-rtc1",
"nrf52840",
] }
nrf-softdevice = { version = "0.1.0", features = [
"defmt",
"ble-peripheral",
"critical-section-impl",
"s113",
"nrf52840",
] }
nrf-softdevice-s113 = "0.1.2"
[build-dependencies]
built = { version = "0.7", features = ["git2", "semver"] }