aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 38ada69e067976969b91954d585092905ab93ff4 (plain)
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
[package]
name = "embassy-ha"
version = "0.1.0"
edition = "2024"

[features]
default = []
defmt = ["dep:defmt", "embassy-net/defmt", "embassy-sync/defmt"]
tracing = ["dep:tracing"]

[dependencies]
embedded-mqtt = { path = "./embedded-mqtt" , features = ["embassy-net"] }
embassy-net = { version = "0.7.1", features = ["medium-ip", "proto-ipv4", "tcp"] }
heapless = "0.9.2"
embassy-time = { version = "0.5.0" }
serde-json-core = "0.6.0"
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
defmt = { version = "1.0.1", optional = true }
tracing = { version = "0.1", optional = true, default-features = false }
embassy-sync = { version = "0.7.2" }
embassy-futures = "0.1.2"
embedded-io-async = "0.6"

[dev-dependencies]
embassy-time = { version = "0.5.0", features = ["std"] }
embassy-executor = { version = "0.9.1", features = ["arch-std", "executor-thread"] }
embassy-sync = { version = "0.7.2" }
static_cell = "2.1.1"
embedded-io-async = { version = "0.6", features = ["std"] }
critical-section = { version = "1", features = ["std"] }
rand = "0.9.2"
tracing-subscriber = "0.3"