aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-12-04 12:43:55 +0000
committerdiogo464 <[email protected]>2025-12-04 12:43:55 +0000
commitb3e47f9c9268e01533a809f83b4f3ecd379c4b22 (patch)
tree54ef438739e267bb40ac502925418b699c9e9894 /Cargo.toml
parent7ffd51ccc1ef8550a9fab43ada5647aad60eb380 (diff)
added basic constant temperature sensor example
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 908e183..d37e957 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,3 +14,11 @@ defmt = "1.0.1"
14embassy-sync = { version = "0.7.2", features = ["defmt"] } 14embassy-sync = { version = "0.7.2", features = ["defmt"] }
15embassy-futures = "0.1.2" 15embassy-futures = "0.1.2"
16embedded-io-async = "0.6" 16embedded-io-async = "0.6"
17
18[dev-dependencies]
19embassy-time = { version = "0.5.0", features = ["std"] }
20embassy-executor = { version = "0.9.1", features = ["arch-std", "executor-thread"] }
21embassy-sync = { version = "0.7.2" }
22static_cell = "2.1.1"
23embedded-io-async = { version = "0.6", features = ["std"] }
24critical-section = { version = "1", features = ["std"] }