aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7e77438..b920fa5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,7 +17,7 @@ defmt = ["dep:defmt", "embassy-net/defmt", "embassy-sync/defmt"]
17tracing = ["dep:tracing"] 17tracing = ["dep:tracing"]
18 18
19[dependencies] 19[dependencies]
20embassy-net = { version = "0.7", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] } 20embassy-net = { version = "0.8", features = ["medium-ip", "proto-ipv4", "tcp", "dns"] }
21heapless = "0.9" 21heapless = "0.9"
22embassy-time = { version = "0.5" } 22embassy-time = { version = "0.5" }
23serde-json-core = "0.6" 23serde-json-core = "0.6"
@@ -26,14 +26,14 @@ defmt = { 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" } 27embassy-sync = { version = "0.7" }
28embassy-futures = "0.1" 28embassy-futures = "0.1"
29embedded-io-async = "0.6" 29embedded-io-async = "0.7"
30 30
31[dev-dependencies] 31[dev-dependencies]
32embassy-time = { version = "0.5", features = ["std"] } 32embassy-time = { version = "0.5", features = ["std"] }
33embassy-executor = { version = "0.9", features = ["arch-std", "executor-thread"] } 33embassy-executor = { version = "0.9", features = ["arch-std", "executor-thread"] }
34embassy-sync = { version = "0.7" } 34embassy-sync = { version = "0.7" }
35static_cell = "2.1" 35static_cell = "2.1"
36embedded-io-async = { version = "0.6", features = ["std"] } 36embedded-io-async = { version = "0.7", features = ["std"] }
37critical-section = { version = "1", features = ["std"] } 37critical-section = { version = "1", features = ["std"] }
38rand = "0.9" 38rand = "0.9"
39tracing-subscriber = "0.3" 39tracing-subscriber = "0.3"