aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-12-04 11:51:07 +0000
committerdiogo464 <[email protected]>2025-12-04 11:51:07 +0000
commit3289c2d9f6257f68cbdd37b78e5e79a41e9e33a1 (patch)
treeb6316df529e56a65e914e982e3c2981605e7a43c /Cargo.toml
init
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..908e183
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,16 @@
1[package]
2name = "embassy-ha"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7embedded-mqtt = { path = "./embedded-mqtt" , features = ["embassy-net"] }
8embassy-net = { version = "0.7.1", features = ["defmt", "medium-ip", "proto-ipv4", "tcp"] }
9heapless = "0.9.2"
10embassy-time = { version = "0.5.0" }
11serde-json-core = "0.6.0"
12serde = { version = "1.0.228", default-features = false, features = ["derive"] }
13defmt = "1.0.1"
14embassy-sync = { version = "0.7.2", features = ["defmt"] }
15embassy-futures = "0.1.2"
16embedded-io-async = "0.6"