-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (49 loc) · 1.38 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
[package]
name = "esp32c3-dephy-ng"
version = "0.1.0"
authors = ["krhougs <_@xn--6g8h.st>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "esp32c3-dephy-ng"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[features]
default = []
experimental = ["esp-idf-svc/experimental"]
[dependencies]
log = "0.4"
esp-idf-svc = { version = "0.51", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
static_cell = "2.1.0"
edge-executor = { version = "0.4.1", features = ["critical-section", "portable-atomic"] }
rand_core = "0.9.0"
k256 = { version = "0.13.4", default-features = false, features = [
"std",
"alloc",
"digest",
"ecdsa",
"ecdsa-core",
"schnorr",
"signature",
] }
hex = { version = "0.4.3", default-features = false, features = ["std", "alloc"] }
sha2 = { version = "0.10.8" }
sha3 = { version = "0.10.8" }
lazy_static = "1.5.0"
serde = "1.0.217"
serde_json = "1.0.138"
anyhow = "1.0.95"
embedded-svc = "0.28.1"
heapless = "0.8.0"
signature = "2.2.0"
[build-dependencies]
embuild = "0.33"
dotenvy = "0.15.7"
paste = "1.0.14"
[[package.metadata.esp-idf-sys.extra_components]]
remote_component = { name = "espressif/esp_websocket_client", version = "1.4.0" }