-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
43 lines (41 loc) · 1.22 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
[package]
name = "http-client"
version = "0.1.0"
authors = ["Sergio Gasquez <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
# TODO: Explain
resolver = "2"
# TODO: Explain
[profile.release]
# Explicitly disable LTO which the Xtensa codegen backend has issues
lto = "off"
opt-level = 3
[profile.dev]
lto = "off"
[dependencies]
esp-alloc = "0.6.0"
esp-hal = { version = "0.23.1", features = ["esp32c3", "unstable"] }
blocking-network-stack = { git = "https://github.com/bjoernQ/blocking-network-stack.git", rev = "b3ecefc222d8806edd221f266999ca339c52d34e" }
esp-backtrace = { version = "0.15.0", features = [
"esp32c3",
"panic-handler",
"exception-handler",
"println",
] }
esp-println = { version = "0.13.0", features = ["esp32c3"] }
esp-wifi = { version = "0.12.0", features = [
"esp32c3",
"wifi",
"utils",
] }
smoltcp = { version = "0.12.0", default-features = false, features = [
"medium-ethernet",
"socket-raw",
] }
edge-dhcp = { version = "0.5.0" }
edge-raw = { version = "0.5.0" }
edge-nal = { version = "0.5.0" }
edge-nal-embassy = { version = "0.5.0" }
embedded-io = { version = "0.6.1", default-features = false }
heapless = { version = "0.8.0", default-features = false }