aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 9 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5f679a9..f3061a4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,14 @@
1[package] 1[package]
2name = "embassy-ha" 2name = "embassy-ha"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2024" 4edition = "2021"
5authors = ["diogo464 <[email protected]>"]
6description = "MQTT Home Assistant integration library for Embassy async runtime"
7license = "MIT OR Apache-2.0"
8repository = "https://github.com/diogo464/embassy-ha"
9readme = "README.md"
10keywords = ["homeassistant", "mqtt", "iot", "embedded", "embassy"]
11categories = ["embedded", "network-programming"]
5 12
6[features] 13[features]
7default = [] 14default = []
@@ -9,7 +16,7 @@ defmt = ["dep:defmt", "embassy-net/defmt", "embassy-sync/defmt"]
9tracing = ["dep:tracing"] 16tracing = ["dep:tracing"]
10 17
11[dependencies] 18[dependencies]
12embedded-mqtt = { path = "./embedded-mqtt" , features = ["embassy-net"] } 19embedded-mqtt = { path = "./embedded-mqtt" }
13embassy-net = { version = "0.7.1", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] } 20embassy-net = { version = "0.7.1", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] }
14heapless = "0.9.2" 21heapless = "0.9.2"
15embassy-time = { version = "0.5.0" } 22embassy-time = { version = "0.5.0" }