diff options
| author | diogo464 <[email protected]> | 2025-12-04 11:51:07 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-12-04 11:51:07 +0000 |
| commit | 3289c2d9f6257f68cbdd37b78e5e79a41e9e33a1 (patch) | |
| tree | b6316df529e56a65e914e982e3c2981605e7a43c /Cargo.toml | |
init
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 16 |
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] | ||
| 2 | name = "embassy-ha" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
| 7 | embedded-mqtt = { path = "./embedded-mqtt" , features = ["embassy-net"] } | ||
| 8 | embassy-net = { version = "0.7.1", features = ["defmt", "medium-ip", "proto-ipv4", "tcp"] } | ||
| 9 | heapless = "0.9.2" | ||
| 10 | embassy-time = { version = "0.5.0" } | ||
| 11 | serde-json-core = "0.6.0" | ||
| 12 | serde = { version = "1.0.228", default-features = false, features = ["derive"] } | ||
| 13 | defmt = "1.0.1" | ||
| 14 | embassy-sync = { version = "0.7.2", features = ["defmt"] } | ||
| 15 | embassy-futures = "0.1.2" | ||
| 16 | embedded-io-async = "0.6" | ||
