-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (64 loc) · 1.84 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
[package]
name = "esp32-homecontrol"
version = "0.1.0"
edition = "2021"
[dependencies]
esp-backtrace = { version = "0.15.0", features = [
"esp32s3",
"exception-handler",
"panic-handler",
"defmt",
] }
esp-hal = { version = "0.23.1", features = ["esp32s3", "defmt", "octal-psram"] }
esp-alloc = { version = "0.6.0" }
embassy-net = { version = "0.6.0", features = [
"tcp",
"udp",
"dns",
"dhcpv4",
"defmt",
"dhcpv4-hostname",
] }
mipidsi = { version = "0.9.0" }
esp-wifi = { version = "0.12.0", features = [
"esp32s3",
"serde",
"wifi",
"defmt",
] }
heapless = { version = "0.8.0", default-features = false }
defmt = "0.3.8"
defmt-rtt = "0.4.1"
embassy-executor = { version = "0.7.0", features = [
"task-arena-size-163840",
"defmt",
] }
embassy-time = { version = "0.4.0", features = ["defmt"] }
esp-hal-embassy = { version = "0.6.0", features = ["esp32s3", "defmt"] }
rust-mqtt = { version = "0.3.0", default-features = false, features = [
"defmt",
] }
rand_core = "0.6.4"
embedded-text = "0.7.2"
embedded-graphics = { version = "0.8.1", features = ["defmt"] }
embedded-hal = { version = "1.0.0", features = ["defmt-03"] }
serde = { version = "1.0.215", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.133", default-features = false, features = [
"alloc",
] }
embassy-futures = { version = "0.1.1", features = ["defmt"] }
embassy-sync = { version = "0.6.0", features = ["defmt"] }
static_cell = "2.1.0"
nb = { version = "1.1.0", features = ["defmt-0-3"] }
[profile.dev]
# Rust debug is too slow.
# For debug builds always builds with some optimization
opt-level = "s"
[profile.release]
codegen-units = 1 # LLVM can perform better optimizations using a single thread
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 's'
overflow-checks = false