-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (51 loc) · 1.29 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 = "iot_test"
version = "0.1.0"
authors = ["isaac-asdf <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[profile.dev.package.esp-wifi]
opt-level = 3
[profile.dev]
lto = "off"
[profile.release]
lto = "off"
[dependencies]
# base esp
esp32-hal = { version = "0.14.0", features = ["rt"] }
esp-backtrace = { version = "0.7.0", features = [
"esp32",
"panic-handler",
"exception-handler",
"print-uart",
] }
esp-println = { version = "0.5.0", features = ["esp32", "log"] }
# wifi
smoltcp = { version = "0.10.0", default-features = false, features = [
"proto-igmp",
"proto-ipv4",
"proto-dns",
"socket-tcp",
"packetmeta-id",
"socket-icmp",
"socket-udp",
"socket-dns",
"medium-ethernet",
"proto-dhcpv4",
"socket-raw",
"socket-dhcpv4",
] }
embedded-svc = { version = "0.25.1", default-features = false, features = [] }
log = "0.4.18"
embedded-io = "0.5.0"
embedded-websocket = { version = "0.9.3", default-features = false }
# nostr specific
hex-literal = "0.4.1"
base16ct = "0.2.0"
nostr-nostd = "0.2.1"
# time fetch
ntp-nostd = "0.0.1"
[dependencies.esp-wifi]
git = "https://github.com/esp-rs/esp-wifi.git"
rev = "e685dfcb08f249f5c6402b2d8ebb5a6a152f40bd"
features = ["esp32", "wifi", "embedded-svc"]