diff options
| author | diogo464 <[email protected]> | 2025-12-04 12:43:55 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-12-04 12:43:55 +0000 |
| commit | b3e47f9c9268e01533a809f83b4f3ecd379c4b22 (patch) | |
| tree | 54ef438739e267bb40ac502925418b699c9e9894 /Cargo.lock | |
| parent | 7ffd51ccc1ef8550a9fab43ada5647aad60eb380 (diff) | |
added basic constant temperature sensor example
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 112 |
1 files changed, 112 insertions, 0 deletions
| @@ -27,6 +27,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 27 | checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" | 27 | checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" |
| 28 | 28 | ||
| 29 | [[package]] | 29 | [[package]] |
| 30 | name = "darling" | ||
| 31 | version = "0.20.11" | ||
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 33 | checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" | ||
| 34 | dependencies = [ | ||
| 35 | "darling_core", | ||
| 36 | "darling_macro", | ||
| 37 | ] | ||
| 38 | |||
| 39 | [[package]] | ||
| 40 | name = "darling_core" | ||
| 41 | version = "0.20.11" | ||
| 42 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 43 | checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" | ||
| 44 | dependencies = [ | ||
| 45 | "fnv", | ||
| 46 | "ident_case", | ||
| 47 | "proc-macro2", | ||
| 48 | "quote", | ||
| 49 | "strsim", | ||
| 50 | "syn", | ||
| 51 | ] | ||
| 52 | |||
| 53 | [[package]] | ||
| 54 | name = "darling_macro" | ||
| 55 | version = "0.20.11" | ||
| 56 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 57 | checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" | ||
| 58 | dependencies = [ | ||
| 59 | "darling_core", | ||
| 60 | "quote", | ||
| 61 | "syn", | ||
| 62 | ] | ||
| 63 | |||
| 64 | [[package]] | ||
| 30 | name = "defmt" | 65 | name = "defmt" |
| 31 | version = "0.3.100" | 66 | version = "0.3.100" |
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" | 67 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -77,6 +112,36 @@ dependencies = [ | |||
| 77 | ] | 112 | ] |
| 78 | 113 | ||
| 79 | [[package]] | 114 | [[package]] |
| 115 | name = "embassy-executor" | ||
| 116 | version = "0.9.1" | ||
| 117 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 118 | checksum = "06070468370195e0e86f241c8e5004356d696590a678d47d6676795b2e439c6b" | ||
| 119 | dependencies = [ | ||
| 120 | "critical-section", | ||
| 121 | "document-features", | ||
| 122 | "embassy-executor-macros", | ||
| 123 | "embassy-executor-timer-queue", | ||
| 124 | ] | ||
| 125 | |||
| 126 | [[package]] | ||
| 127 | name = "embassy-executor-macros" | ||
| 128 | version = "0.7.0" | ||
| 129 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 130 | checksum = "dfdddc3a04226828316bf31393b6903ee162238576b1584ee2669af215d55472" | ||
| 131 | dependencies = [ | ||
| 132 | "darling", | ||
| 133 | "proc-macro2", | ||
| 134 | "quote", | ||
| 135 | "syn", | ||
| 136 | ] | ||
| 137 | |||
| 138 | [[package]] | ||
| 139 | name = "embassy-executor-timer-queue" | ||
| 140 | version = "0.1.0" | ||
| 141 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 142 | checksum = "2fc328bf943af66b80b98755db9106bf7e7471b0cf47dc8559cd9a6be504cc9c" | ||
| 143 | |||
| 144 | [[package]] | ||
| 80 | name = "embassy-futures" | 145 | name = "embassy-futures" |
| 81 | version = "0.1.2" | 146 | version = "0.1.2" |
| 82 | source = "registry+https://github.com/rust-lang/crates.io-index" | 147 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -86,7 +151,9 @@ checksum = "dc2d050bdc5c21e0862a89256ed8029ae6c290a93aecefc73084b3002cdebb01" | |||
| 86 | name = "embassy-ha" | 151 | name = "embassy-ha" |
| 87 | version = "0.1.0" | 152 | version = "0.1.0" |
| 88 | dependencies = [ | 153 | dependencies = [ |
| 154 | "critical-section", | ||
| 89 | "defmt 1.0.1", | 155 | "defmt 1.0.1", |
| 156 | "embassy-executor", | ||
| 90 | "embassy-futures", | 157 | "embassy-futures", |
| 91 | "embassy-net", | 158 | "embassy-net", |
| 92 | "embassy-sync", | 159 | "embassy-sync", |
| @@ -96,6 +163,7 @@ dependencies = [ | |||
| 96 | "heapless 0.9.2", | 163 | "heapless 0.9.2", |
| 97 | "serde", | 164 | "serde", |
| 98 | "serde-json-core", | 165 | "serde-json-core", |
| 166 | "static_cell", | ||
| 99 | ] | 167 | ] |
| 100 | 168 | ||
| 101 | [[package]] | 169 | [[package]] |
| @@ -151,6 +219,7 @@ dependencies = [ | |||
| 151 | "defmt 1.0.1", | 219 | "defmt 1.0.1", |
| 152 | "document-features", | 220 | "document-features", |
| 153 | "embassy-time-driver", | 221 | "embassy-time-driver", |
| 222 | "embassy-time-queue-utils", | ||
| 154 | "embedded-hal 0.2.7", | 223 | "embedded-hal 0.2.7", |
| 155 | "embedded-hal 1.0.0", | 224 | "embedded-hal 1.0.0", |
| 156 | "embedded-hal-async", | 225 | "embedded-hal-async", |
| @@ -167,6 +236,16 @@ dependencies = [ | |||
| 167 | ] | 236 | ] |
| 168 | 237 | ||
| 169 | [[package]] | 238 | [[package]] |
| 239 | name = "embassy-time-queue-utils" | ||
| 240 | version = "0.3.0" | ||
| 241 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 242 | checksum = "80e2ee86063bd028a420a5fb5898c18c87a8898026da1d4c852af2c443d0a454" | ||
| 243 | dependencies = [ | ||
| 244 | "embassy-executor-timer-queue", | ||
| 245 | "heapless 0.8.0", | ||
| 246 | ] | ||
| 247 | |||
| 248 | [[package]] | ||
| 170 | name = "embedded-hal" | 249 | name = "embedded-hal" |
| 171 | version = "0.2.7" | 250 | version = "0.2.7" |
| 172 | source = "registry+https://github.com/rust-lang/crates.io-index" | 251 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -234,6 +313,12 @@ dependencies = [ | |||
| 234 | ] | 313 | ] |
| 235 | 314 | ||
| 236 | [[package]] | 315 | [[package]] |
| 316 | name = "fnv" | ||
| 317 | version = "1.0.7" | ||
| 318 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 319 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | ||
| 320 | |||
| 321 | [[package]] | ||
| 237 | name = "futures-core" | 322 | name = "futures-core" |
| 238 | version = "0.3.31" | 323 | version = "0.3.31" |
| 239 | source = "registry+https://github.com/rust-lang/crates.io-index" | 324 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -277,6 +362,12 @@ dependencies = [ | |||
| 277 | ] | 362 | ] |
| 278 | 363 | ||
| 279 | [[package]] | 364 | [[package]] |
| 365 | name = "ident_case" | ||
| 366 | version = "1.0.1" | ||
| 367 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 368 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" | ||
| 369 | |||
| 370 | [[package]] | ||
| 280 | name = "litrs" | 371 | name = "litrs" |
| 281 | version = "1.0.0" | 372 | version = "1.0.0" |
| 282 | source = "registry+https://github.com/rust-lang/crates.io-index" | 373 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -304,6 +395,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 304 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" | 395 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" |
| 305 | 396 | ||
| 306 | [[package]] | 397 | [[package]] |
| 398 | name = "portable-atomic" | ||
| 399 | version = "1.11.1" | ||
| 400 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 401 | checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" | ||
| 402 | |||
| 403 | [[package]] | ||
| 307 | name = "proc-macro-error-attr2" | 404 | name = "proc-macro-error-attr2" |
| 308 | version = "2.0.0" | 405 | version = "2.0.0" |
| 309 | source = "registry+https://github.com/rust-lang/crates.io-index" | 406 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -411,6 +508,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 411 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" | 508 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" |
| 412 | 509 | ||
| 413 | [[package]] | 510 | [[package]] |
| 511 | name = "static_cell" | ||
| 512 | version = "2.1.1" | ||
| 513 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 514 | checksum = "0530892bb4fa575ee0da4b86f86c667132a94b74bb72160f58ee5a4afec74c23" | ||
| 515 | dependencies = [ | ||
| 516 | "portable-atomic", | ||
| 517 | ] | ||
| 518 | |||
| 519 | [[package]] | ||
| 520 | name = "strsim" | ||
| 521 | version = "0.11.1" | ||
| 522 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 523 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | ||
| 524 | |||
| 525 | [[package]] | ||
| 414 | name = "syn" | 526 | name = "syn" |
| 415 | version = "2.0.111" | 527 | version = "2.0.111" |
| 416 | source = "registry+https://github.com/rust-lang/crates.io-index" | 528 | source = "registry+https://github.com/rust-lang/crates.io-index" |
