-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
59 lines (56 loc) · 1.76 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
[package]
name = "nostd_wifi_lamp"
version = "0.1.0"
authors = ["Bene <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
hal = { package = "esp32-hal", version="0.11.0", features = [
"embassy",
"async",
"rt",
"embassy-time-timg0",
] }
esp-backtrace = { version = "0.6.0", features = [
"esp32",
"panic-handler",
"exception-handler",
"print-uart",
] }
esp-println = { version = "0.4.0", features = ["esp32", "log"] }
esp-alloc = { version = "0.2.0", features = ["oom-handler"] }
esp-wifi = { git = "https://github.com/esp-rs/esp-wifi", features = [
"esp32",
"esp32-async",
"async",
"embedded-svc",
"embassy-net",
"wifi",
] }
embassy-sync = "0.1.0"
embassy-time = { version = "0.1.0", features = ["nightly"] }
embassy-executor = { package = "embassy-executor", git = "https://github.com/embassy-rs/embassy/", rev = "cd9a65b", features = [
"nightly",
"integrated-timers",
] }
embassy-net-driver = { git = "https://github.com/embassy-rs/embassy", rev = "26474ce6eb759e5add1c137f3417845e0797df3a" }
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "26474ce6eb759e5add1c137f3417845e0797df3a", features = [
"nightly",
"tcp",
"udp",
"dhcpv4",
"medium-ethernet",
] }
futures-util = { version = "0.3.17", default-features = false }
embedded-svc = { version = "0.23.1", default-features = false, features = [] }
embedded-io = "0.4.0"
smart-leds = "0.3.0"
serde = { version = "1.0", default-features = false }
serde-json-core = "0.5.0"
esp-hal-smartled = {version = "0.1.0", features = ["esp32"]}
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
[profile.dev.package.esp-wifi]
opt-level = 3
[profile.release]
opt-level = 3
lto="off"