-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (53 loc) · 1.31 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (53 loc) · 1.31 KB
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
# Cargo.toml
[package]
name = "esp32multical21"
version = "1.6.3"
authors = ["Sami J. Mäkinen <sjm@iki.fi>"]
edition = "2024"
[features]
default = ["esp32-c3"]
esp32-c3 = []
esp-wroom-32 = []
[dependencies]
anyhow = "1.0"
askama = "0.16"
axum = { version = "0.8", features = ["http1", "json"] }
axum-macros = "0.5"
aes = "0.9"
chrono = "0.4"
cc1101 = { version = "0.1", features = ["std"] }
ctr = "0.10"
crc = "3.4"
embedded-svc = { version = "0.29", features = ["experimental"] }
esp-idf-sys = { version = "0.37", features = ["binstart"] }
esp-idf-svc = { version = "0.52", features = ["alloc", "experimental"] }
esp-idf-hal = "0.46"
log = "0.4"
postcard = { version = "1.1", features = ["alloc", "use-crc"] }
serde = "1.0"
serde_json = "1.0"
tokio = { version = "1.52", features = ["rt", "net", "io-util"] }
thiserror = "2.0"
# tower-http = { version = "0", features = ["trace"] }
# tracing = "0"
# tracing-subscriber = { version = "0", features = ["env-filter"] }
[build-dependencies]
anyhow = "1.0"
build-data = "0.3"
embuild = "0.33"
flate2 = "1.1"
[profile.release]
debug = false
opt-level = "z"
codegen-units = 1
lto = "fat"
strip = true
[profile.dev]
debug = true
opt-level = 2
lto = "off"
[package.metadata.esp-idf-sys]
extra_components = [
{ remote_component = { name = "espressif/mdns", version = "*" } }
]
# EOF