aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-12-09 21:35:48 +0000
committerdiogo464 <[email protected]>2025-12-09 22:16:03 +0000
commitfafbda512ff81825e3e43925d7f6225dd4918528 (patch)
treeef8efa08183763c4b4c250c69a7eedd6a6876d87 /Cargo.toml
parent9e9e52b2afc6e4d1271a37f8b786b39afafe420e (diff)
updated Cargo.toml for publish
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml28
1 files changed, 14 insertions, 14 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d8001cf..2b46089 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,25 +16,25 @@ defmt = ["dep:defmt", "embassy-net/defmt", "embassy-sync/defmt"]
16tracing = ["dep:tracing"] 16tracing = ["dep:tracing"]
17 17
18[dependencies] 18[dependencies]
19embedded-mqtt = { path = "./embedded-mqtt" } 19embedded-mqtt = { version = "0.1", path = "./embedded-mqtt" }
20embassy-net = { version = "0.7.1", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] } 20embassy-net = { version = "0.7", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] }
21heapless = "0.9.2" 21heapless = "0.9"
22embassy-time = { version = "0.5.0" } 22embassy-time = { version = "0.5" }
23serde-json-core = "0.6.0" 23serde-json-core = "0.6"
24serde = { version = "1.0.228", default-features = false, features = ["derive"] } 24serde = { version = "1", default-features = false, features = ["derive"] }
25defmt = { version = "1.0.1", optional = true } 25defmt = { version = "1", optional = true }
26tracing = { version = "0.1", optional = true, default-features = false } 26tracing = { version = "0.1", optional = true, default-features = false }
27embassy-sync = { version = "0.7.2" } 27embassy-sync = { version = "0.7" }
28embassy-futures = "0.1.2" 28embassy-futures = "0.1"
29embedded-io-async = "0.6" 29embedded-io-async = "0.6"
30 30
31[dev-dependencies] 31[dev-dependencies]
32embassy-time = { version = "0.5.0", features = ["std"] } 32embassy-time = { version = "0.5", features = ["std"] }
33embassy-executor = { version = "0.9.1", features = ["arch-std", "executor-thread"] } 33embassy-executor = { version = "0.9", features = ["arch-std", "executor-thread"] }
34embassy-sync = { version = "0.7.2" } 34embassy-sync = { version = "0.7" }
35static_cell = "2.1.1" 35static_cell = "2.1"
36embedded-io-async = { version = "0.6", features = ["std"] } 36embedded-io-async = { version = "0.6", features = ["std"] }
37critical-section = { version = "1", features = ["std"] } 37critical-section = { version = "1", features = ["std"] }
38rand = "0.9.2" 38rand = "0.9"
39tracing-subscriber = "0.3" 39tracing-subscriber = "0.3"
40tracing = "0.1" 40tracing = "0.1"