-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (32 loc) · 943 Bytes
/
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
[package]
name = "wot-esp-demo"
version = "0.1.0"
authors = [ "Luca Barbato <[email protected]>"]
edition = "2021"
resolver = "2"
license = "MIT OR Apache-2.0"
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[dependencies]
anyhow = "1.0.75"
embedded-svc = "0.28.0"
esp-idf-svc = "0.49.0"
esp-idf-hal = "0.44.1"
heapless = "0.8.0"
log = "0.4.20"
serde_json = "1.0.108"
shtcx = "1.0.0"
toml-cfg = "0.2.0"
wot-td = "0.5.0"
[[package.metadata.esp-idf-sys.extra_components]]
remote_component = { name = "espressif/mdns", version = "1.2" }
[build-dependencies]
embuild = { version = "0.32.0", features = ["espidf"] }
toml-cfg = "0.2.0"
# See https://github.com/rust-lang/cc-rs/issues/1005
[patch.crates-io]
cc = { git = "https://github.com/rust-lang/cc-rs", tag = "1.0.83" }
esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal" }