yaroc 0.1.20b4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. yaroc-0.1.20b4/Cargo.lock +3539 -0
  2. yaroc-0.1.20b4/Cargo.toml +41 -0
  3. yaroc-0.1.20b4/PKG-INFO +40 -0
  4. yaroc-0.1.20b4/common/Cargo.toml +52 -0
  5. yaroc-0.1.20b4/common/build.rs +11 -0
  6. yaroc-0.1.20b4/common/protobufs/punches.proto +9 -0
  7. yaroc-0.1.20b4/common/protobufs/status.proto +59 -0
  8. yaroc-0.1.20b4/common/protobufs/timestamp.proto +6 -0
  9. yaroc-0.1.20b4/common/src/at/fake_modem.rs +103 -0
  10. yaroc-0.1.20b4/common/src/at/mod.rs +6 -0
  11. yaroc-0.1.20b4/common/src/at/nrf.rs +22 -0
  12. yaroc-0.1.20b4/common/src/at/response.rs +441 -0
  13. yaroc-0.1.20b4/common/src/at/uart.rs +461 -0
  14. yaroc-0.1.20b4/common/src/backoff.rs +369 -0
  15. yaroc-0.1.20b4/common/src/bg77/hw.rs +70 -0
  16. yaroc-0.1.20b4/common/src/bg77/mod.rs +4 -0
  17. yaroc-0.1.20b4/common/src/bg77/modem_manager.rs +287 -0
  18. yaroc-0.1.20b4/common/src/bg77/mqtt.rs +652 -0
  19. yaroc-0.1.20b4/common/src/bg77/system_info.rs +233 -0
  20. yaroc-0.1.20b4/common/src/error.rs +66 -0
  21. yaroc-0.1.20b4/common/src/flash.rs +28 -0
  22. yaroc-0.1.20b4/common/src/lib.rs +58 -0
  23. yaroc-0.1.20b4/common/src/punch.rs +601 -0
  24. yaroc-0.1.20b4/common/src/send_punch.rs +353 -0
  25. yaroc-0.1.20b4/common/src/si_uart.rs +412 -0
  26. yaroc-0.1.20b4/common/src/status.rs +399 -0
  27. yaroc-0.1.20b4/common/src/usb.rs +250 -0
  28. yaroc-0.1.20b4/common/tests/backoff.rs +247 -0
  29. yaroc-0.1.20b4/common/tests/mqtt.rs +171 -0
  30. yaroc-0.1.20b4/common/tests/uart.rs +94 -0
  31. yaroc-0.1.20b4/pyproject.toml +89 -0
  32. yaroc-0.1.20b4/python/Cargo.toml +40 -0
  33. yaroc-0.1.20b4/python/src/config.rs +157 -0
  34. yaroc-0.1.20b4/python/src/lib.rs +8 -0
  35. yaroc-0.1.20b4/python/src/message_handler.rs +218 -0
  36. yaroc-0.1.20b4/python/src/punch.rs +133 -0
  37. yaroc-0.1.20b4/python/src/python.rs +90 -0
  38. yaroc-0.1.20b4/python/src/serial_client.rs +498 -0
  39. yaroc-0.1.20b4/python/src/si_uart.rs +112 -0
  40. yaroc-0.1.20b4/python/src/status.rs +129 -0
  41. yaroc-0.1.20b4/python/src/yaroc_cli.rs +61 -0
  42. yaroc-0.1.20b4/python/tests/test_client.py +61 -0
  43. yaroc-0.1.20b4/python/tests/test_clock.py +16 -0
  44. yaroc-0.1.20b4/python/tests/test_modem_manager.py +14 -0
  45. yaroc-0.1.20b4/python/tests/test_mop.py +124 -0
  46. yaroc-0.1.20b4/python/tests/test_retries.py +61 -0
  47. yaroc-0.1.20b4/python/tests/test_si.py +47 -0
  48. yaroc-0.1.20b4/python/tests/test_sirap.py +24 -0
  49. yaroc-0.1.20b4/python/tests/test_sys_info.py +9 -0
  50. yaroc-0.1.20b4/python/uv.lock +1300 -0
  51. yaroc-0.1.20b4/receiver/Cargo.toml +36 -0
  52. yaroc-0.1.20b4/receiver/examples/meshtastic_serial.rs +73 -0
  53. yaroc-0.1.20b4/receiver/examples/mqtt.rs +87 -0
  54. yaroc-0.1.20b4/receiver/examples/si_uart.rs +36 -0
  55. yaroc-0.1.20b4/receiver/src/error.rs +26 -0
  56. yaroc-0.1.20b4/receiver/src/lib.rs +12 -0
  57. yaroc-0.1.20b4/receiver/src/logs.rs +383 -0
  58. yaroc-0.1.20b4/receiver/src/meshtastic.rs +647 -0
  59. yaroc-0.1.20b4/receiver/src/meshtastic_serial.rs +130 -0
  60. yaroc-0.1.20b4/receiver/src/message_handler.rs +86 -0
  61. yaroc-0.1.20b4/receiver/src/mqtt.rs +220 -0
  62. yaroc-0.1.20b4/receiver/src/serial_device_manager.rs +168 -0
  63. yaroc-0.1.20b4/receiver/src/si_uart.rs +77 -0
  64. yaroc-0.1.20b4/receiver/src/state.rs +767 -0
  65. yaroc-0.1.20b4/receiver/src/system_info.rs +65 -0
  66. yaroc-0.1.20b4/yaroc/__init__.py +0 -0
  67. yaroc-0.1.20b4/yaroc/clients/__init__.py +0 -0
  68. yaroc-0.1.20b4/yaroc/clients/client.py +81 -0
  69. yaroc-0.1.20b4/yaroc/clients/mop.py +223 -0
  70. yaroc-0.1.20b4/yaroc/clients/mqtt.py +238 -0
  71. yaroc-0.1.20b4/yaroc/clients/roc.py +124 -0
  72. yaroc-0.1.20b4/yaroc/clients/sirap.py +127 -0
  73. yaroc-0.1.20b4/yaroc/pb/coords_pb2.pyi +18 -0
  74. yaroc-0.1.20b4/yaroc/pb/punches_pb2.py +26 -0
  75. yaroc-0.1.20b4/yaroc/pb/punches_pb2.pyi +15 -0
  76. yaroc-0.1.20b4/yaroc/pb/status_pb2.py +38 -0
  77. yaroc-0.1.20b4/yaroc/pb/status_pb2.pyi +92 -0
  78. yaroc-0.1.20b4/yaroc/pb/timestamp_pb2.py +25 -0
  79. yaroc-0.1.20b4/yaroc/pb/timestamp_pb2.pyi +11 -0
  80. yaroc-0.1.20b4/yaroc/pb/utils.py +13 -0
  81. yaroc-0.1.20b4/yaroc/py.typed +0 -0
  82. yaroc-0.1.20b4/yaroc/rs.pyi +119 -0
  83. yaroc-0.1.20b4/yaroc/scripts/send_punch.py +121 -0
  84. yaroc-0.1.20b4/yaroc/scripts/yarocd.py +158 -0
  85. yaroc-0.1.20b4/yaroc/sources/si.py +175 -0
  86. yaroc-0.1.20b4/yaroc/sources/usb_serial_manager.py +76 -0
  87. yaroc-0.1.20b4/yaroc/utils/__init__.py +0 -0
  88. yaroc-0.1.20b4/yaroc/utils/async_serial.py +145 -0
  89. yaroc-0.1.20b4/yaroc/utils/container.py +124 -0
  90. yaroc-0.1.20b4/yaroc/utils/modem_manager.py +162 -0
  91. yaroc-0.1.20b4/yaroc/utils/retries.py +157 -0
  92. yaroc-0.1.20b4/yaroc/utils/sim7020.py +258 -0
  93. yaroc-0.1.20b4/yaroc/utils/status.py +125 -0
  94. yaroc-0.1.20b4/yaroc/utils/sys_info.py +143 -0
@@ -0,0 +1,3539 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "Inflector"
7
+ version = "0.11.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "once_cell",
19
+ "version_check",
20
+ "zerocopy",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "aho-corasick"
25
+ version = "1.1.4"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
28
+ dependencies = [
29
+ "memchr",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "android_system_properties"
34
+ version = "0.1.5"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
37
+ dependencies = [
38
+ "libc",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstream"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
46
+ dependencies = [
47
+ "anstyle",
48
+ "anstyle-parse",
49
+ "anstyle-query",
50
+ "anstyle-wincon",
51
+ "colorchoice",
52
+ "is_terminal_polyfill",
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle"
58
+ version = "1.0.14"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
61
+
62
+ [[package]]
63
+ name = "anstyle-parse"
64
+ version = "1.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
67
+ dependencies = [
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-query"
73
+ version = "1.1.5"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
76
+ dependencies = [
77
+ "windows-sys 0.61.2",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-wincon"
82
+ version = "3.0.11"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
85
+ dependencies = [
86
+ "anstyle",
87
+ "once_cell_polyfill",
88
+ "windows-sys 0.61.2",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anyhow"
93
+ version = "1.0.102"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
96
+
97
+ [[package]]
98
+ name = "arc-swap"
99
+ version = "1.9.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
102
+ dependencies = [
103
+ "rustversion",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "atomic-polyfill"
108
+ version = "1.0.3"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
111
+ dependencies = [
112
+ "critical-section",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "autocfg"
117
+ version = "1.5.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
120
+
121
+ [[package]]
122
+ name = "az"
123
+ version = "1.3.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "be5eb007b7cacc6c660343e96f650fedf4b5a77512399eb952ca6642cf8d13f7"
126
+
127
+ [[package]]
128
+ name = "bare-metal"
129
+ version = "0.2.5"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3"
132
+ dependencies = [
133
+ "rustc_version 0.2.3",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "beef"
138
+ version = "0.5.2"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
141
+
142
+ [[package]]
143
+ name = "bitfield"
144
+ version = "0.13.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "46afbd2983a5d5a7bd740ccb198caf5b82f45c40c09c0eed36052d91cb92e719"
147
+
148
+ [[package]]
149
+ name = "bitfield"
150
+ version = "0.14.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac"
153
+
154
+ [[package]]
155
+ name = "bitflags"
156
+ version = "1.3.2"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
159
+
160
+ [[package]]
161
+ name = "bitflags"
162
+ version = "2.11.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
165
+
166
+ [[package]]
167
+ name = "block-buffer"
168
+ version = "0.10.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
171
+ dependencies = [
172
+ "generic-array",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bumpalo"
177
+ version = "3.20.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
180
+
181
+ [[package]]
182
+ name = "bytemuck"
183
+ version = "1.25.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
186
+
187
+ [[package]]
188
+ name = "byteorder"
189
+ version = "1.5.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
192
+
193
+ [[package]]
194
+ name = "bytes"
195
+ version = "1.11.1"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
198
+
199
+ [[package]]
200
+ name = "cc"
201
+ version = "1.2.60"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
204
+ dependencies = [
205
+ "find-msvc-tools",
206
+ "shlex",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cfg-if"
211
+ version = "1.0.4"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
214
+
215
+ [[package]]
216
+ name = "cfg_aliases"
217
+ version = "0.2.1"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
220
+
221
+ [[package]]
222
+ name = "chrono"
223
+ version = "0.4.44"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
226
+ dependencies = [
227
+ "iana-time-zone",
228
+ "js-sys",
229
+ "num-traits",
230
+ "wasm-bindgen",
231
+ "windows-link",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "clap"
236
+ version = "4.6.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
239
+ dependencies = [
240
+ "clap_builder",
241
+ "clap_derive",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "clap_builder"
246
+ version = "4.6.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
249
+ dependencies = [
250
+ "anstream",
251
+ "anstyle",
252
+ "clap_lex",
253
+ "strsim 0.11.1",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "clap_derive"
258
+ version = "4.6.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
261
+ dependencies = [
262
+ "heck",
263
+ "proc-macro2",
264
+ "quote",
265
+ "syn 2.0.117",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "clap_lex"
270
+ version = "1.1.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
273
+
274
+ [[package]]
275
+ name = "cobs"
276
+ version = "0.3.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
279
+ dependencies = [
280
+ "thiserror 2.0.18",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "colorchoice"
285
+ version = "1.0.5"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
288
+
289
+ [[package]]
290
+ name = "cordyceps"
291
+ version = "0.3.4"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
294
+ dependencies = [
295
+ "loom",
296
+ "tracing",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "core-foundation"
301
+ version = "0.9.4"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
304
+ dependencies = [
305
+ "core-foundation-sys",
306
+ "libc",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "core-foundation"
311
+ version = "0.10.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
314
+ dependencies = [
315
+ "core-foundation-sys",
316
+ "libc",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "core-foundation-sys"
321
+ version = "0.8.7"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
324
+
325
+ [[package]]
326
+ name = "cortex-m"
327
+ version = "0.7.7"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "8ec610d8f49840a5b376c69663b6369e71f4b34484b9b2eb29fb918d92516cb9"
330
+ dependencies = [
331
+ "bare-metal",
332
+ "bitfield 0.13.2",
333
+ "embedded-hal 0.2.7",
334
+ "volatile-register",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "cortex-m-rt"
339
+ version = "0.7.5"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "801d4dec46b34c299ccf6b036717ae0fce602faa4f4fe816d9013b9a7c9f5ba6"
342
+ dependencies = [
343
+ "cortex-m-rt-macros",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "cortex-m-rt-macros"
348
+ version = "0.7.5"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "e37549a379a9e0e6e576fd208ee60394ccb8be963889eebba3ffe0980364f472"
351
+ dependencies = [
352
+ "proc-macro2",
353
+ "quote",
354
+ "syn 2.0.117",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "cortex-m-semihosting"
359
+ version = "0.5.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "c23234600452033cc77e4b761e740e02d2c4168e11dbf36ab14a0f58973592b0"
362
+ dependencies = [
363
+ "cortex-m",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "critical-section"
368
+ version = "1.2.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
371
+
372
+ [[package]]
373
+ name = "crunchy"
374
+ version = "0.2.4"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
377
+
378
+ [[package]]
379
+ name = "crypto-common"
380
+ version = "0.1.7"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
383
+ dependencies = [
384
+ "generic-array",
385
+ "typenum",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "darling"
390
+ version = "0.13.4"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
393
+ dependencies = [
394
+ "darling_core 0.13.4",
395
+ "darling_macro 0.13.4",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "darling"
400
+ version = "0.20.11"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
403
+ dependencies = [
404
+ "darling_core 0.20.11",
405
+ "darling_macro 0.20.11",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "darling_core"
410
+ version = "0.13.4"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
413
+ dependencies = [
414
+ "fnv",
415
+ "ident_case",
416
+ "proc-macro2",
417
+ "quote",
418
+ "strsim 0.10.0",
419
+ "syn 1.0.109",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "darling_core"
424
+ version = "0.20.11"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
427
+ dependencies = [
428
+ "fnv",
429
+ "ident_case",
430
+ "proc-macro2",
431
+ "quote",
432
+ "strsim 0.11.1",
433
+ "syn 2.0.117",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "darling_macro"
438
+ version = "0.13.4"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
441
+ dependencies = [
442
+ "darling_core 0.13.4",
443
+ "quote",
444
+ "syn 1.0.109",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "darling_macro"
449
+ version = "0.20.11"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
452
+ dependencies = [
453
+ "darling_core 0.20.11",
454
+ "quote",
455
+ "syn 2.0.117",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "defmt"
460
+ version = "0.3.100"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "f0963443817029b2024136fc4dd07a5107eb8f977eaf18fcd1fdeb11306b64ad"
463
+ dependencies = [
464
+ "defmt 1.0.1",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "defmt"
469
+ version = "1.0.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "548d977b6da32fa1d1fda2876453da1e7df63ad0304c8b3dae4dbe7b96f39b78"
472
+ dependencies = [
473
+ "bitflags 1.3.2",
474
+ "defmt-macros",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "defmt-macros"
479
+ version = "1.0.1"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "3d4fc12a85bcf441cfe44344c4b72d58493178ce635338a3f3b78943aceb258e"
482
+ dependencies = [
483
+ "defmt-parser",
484
+ "proc-macro-error2",
485
+ "proc-macro2",
486
+ "quote",
487
+ "syn 2.0.117",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "defmt-parser"
492
+ version = "1.0.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
495
+ dependencies = [
496
+ "thiserror 2.0.18",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "defmt-rtt"
501
+ version = "1.1.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "93d5a25c99d89c40f5676bec8cefe0614f17f0f40e916f98e345dae941807f9e"
504
+ dependencies = [
505
+ "critical-section",
506
+ "defmt 1.0.1",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "digest"
511
+ version = "0.10.7"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
514
+ dependencies = [
515
+ "block-buffer",
516
+ "crypto-common",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "document-features"
521
+ version = "0.2.12"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
524
+ dependencies = [
525
+ "litrs",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "downcast"
530
+ version = "0.11.0"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
533
+
534
+ [[package]]
535
+ name = "either"
536
+ version = "1.15.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
539
+
540
+ [[package]]
541
+ name = "embassy-boot"
542
+ version = "0.7.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "73bfc955c9238df2ce9fecc6f18a64b13ecaa41a3cd42d940a09f304765d10db"
545
+ dependencies = [
546
+ "defmt 1.0.1",
547
+ "digest",
548
+ "document-features",
549
+ "embassy-embedded-hal",
550
+ "embassy-sync 0.8.0",
551
+ "embedded-storage",
552
+ "embedded-storage-async",
553
+ "signature",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "embassy-boot-nrf"
558
+ version = "0.11.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "6edfb46d66a502d6a566e40cdafa62996a997b82f4b51264b2fccb85288435c0"
561
+ dependencies = [
562
+ "cfg-if",
563
+ "cortex-m",
564
+ "cortex-m-rt",
565
+ "defmt 1.0.1",
566
+ "embassy-boot",
567
+ "embassy-nrf",
568
+ "embassy-sync 0.8.0",
569
+ "embedded-storage",
570
+ "embedded-storage-async",
571
+ "nrf-softdevice-mbr",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "embassy-embedded-hal"
576
+ version = "0.6.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "b0641612053b2f34fc250bb63f6630ae75de46e02ade7f457268447081d709ce"
579
+ dependencies = [
580
+ "defmt 1.0.1",
581
+ "embassy-futures",
582
+ "embassy-hal-internal 0.4.0",
583
+ "embassy-sync 0.8.0",
584
+ "embassy-time",
585
+ "embedded-hal 0.2.7",
586
+ "embedded-hal 1.0.0",
587
+ "embedded-hal-async",
588
+ "embedded-storage",
589
+ "embedded-storage-async",
590
+ "nb 1.1.0",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "embassy-executor"
595
+ version = "0.10.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "5d0d3b15c9d7dc4fec1d8cb77112472fb008b3b28c51ad23838d83587a6d2f1e"
598
+ dependencies = [
599
+ "cordyceps",
600
+ "cortex-m",
601
+ "critical-section",
602
+ "defmt 1.0.1",
603
+ "document-features",
604
+ "embassy-executor-macros",
605
+ "embassy-executor-timer-queue",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "embassy-executor-macros"
610
+ version = "0.8.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "d11a246f53de5f97a387f40ac24726817cd0b6f833e7603baac784f29d6ff276"
613
+ dependencies = [
614
+ "darling 0.20.11",
615
+ "proc-macro2",
616
+ "quote",
617
+ "syn 2.0.117",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "embassy-executor-timer-queue"
622
+ version = "0.1.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "2fc328bf943af66b80b98755db9106bf7e7471b0cf47dc8559cd9a6be504cc9c"
625
+
626
+ [[package]]
627
+ name = "embassy-futures"
628
+ version = "0.1.2"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "dc2d050bdc5c21e0862a89256ed8029ae6c290a93aecefc73084b3002cdebb01"
631
+ dependencies = [
632
+ "defmt 1.0.1",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "embassy-hal-internal"
637
+ version = "0.4.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "7f10ce10a4dfdf6402d8e9bd63128986b96a736b1a0a6680547ed2ac55d55dba"
640
+ dependencies = [
641
+ "num-traits",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "embassy-hal-internal"
646
+ version = "0.5.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "568659fc53866d3d85c60fa33723fb751aa69e71507634fc2c19e7649432fb75"
649
+ dependencies = [
650
+ "cortex-m",
651
+ "critical-section",
652
+ "defmt 1.0.1",
653
+ "num-traits",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "embassy-net-driver"
658
+ version = "0.2.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "524eb3c489760508f71360112bca70f6e53173e6fe48fc5f0efd0f5ab217751d"
661
+
662
+ [[package]]
663
+ name = "embassy-net-driver-channel"
664
+ version = "0.4.0"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "a07d2eb9f05a6fc876500949856ea1be40773d866d8cb99384f72d0ae4568c16"
667
+ dependencies = [
668
+ "embassy-futures",
669
+ "embassy-net-driver",
670
+ "embassy-sync 0.8.0",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "embassy-nrf"
675
+ version = "0.10.0"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "b715380574504335c40ec3016bc44598fac3c385f82959b26c41b25c30b7648d"
678
+ dependencies = [
679
+ "bitflags 2.11.0",
680
+ "cfg-if",
681
+ "cortex-m",
682
+ "cortex-m-rt",
683
+ "critical-section",
684
+ "defmt 1.0.1",
685
+ "document-features",
686
+ "embassy-embedded-hal",
687
+ "embassy-futures",
688
+ "embassy-hal-internal 0.5.0",
689
+ "embassy-sync 0.8.0",
690
+ "embassy-time",
691
+ "embassy-time-driver",
692
+ "embassy-time-queue-utils",
693
+ "embassy-usb-driver",
694
+ "embedded-hal 0.2.7",
695
+ "embedded-hal 1.0.0",
696
+ "embedded-hal-async",
697
+ "embedded-io 0.7.1",
698
+ "embedded-io-async 0.7.0",
699
+ "embedded-storage",
700
+ "embedded-storage-async",
701
+ "fixed",
702
+ "nrf-pac",
703
+ "rand_core 0.6.4",
704
+ "rand_core 0.9.5",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "embassy-sync"
709
+ version = "0.6.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "8d2c8cdff05a7a51ba0087489ea44b0b1d97a296ca6b1d6d1a33ea7423d34049"
712
+ dependencies = [
713
+ "cfg-if",
714
+ "critical-section",
715
+ "embedded-io-async 0.6.1",
716
+ "futures-sink",
717
+ "futures-util",
718
+ "heapless 0.8.0",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "embassy-sync"
723
+ version = "0.8.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "7bbd85cf5a5ae56bdf26f618364af642d1d0a4e245cdd75cd9aabda382f65a81"
726
+ dependencies = [
727
+ "cfg-if",
728
+ "critical-section",
729
+ "defmt 1.0.1",
730
+ "embedded-io-async 0.7.0",
731
+ "futures-core",
732
+ "futures-sink",
733
+ "heapless 0.9.2",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "embassy-time"
738
+ version = "0.5.1"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "592b0c143ec626e821d4d90da51a2bd91d559d6c442b7c74a47d368c9e23d97a"
741
+ dependencies = [
742
+ "cfg-if",
743
+ "critical-section",
744
+ "defmt 1.0.1",
745
+ "document-features",
746
+ "embassy-time-driver",
747
+ "embassy-time-queue-utils",
748
+ "embedded-hal 0.2.7",
749
+ "embedded-hal 1.0.0",
750
+ "embedded-hal-async",
751
+ "futures-core",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "embassy-time-driver"
756
+ version = "0.2.2"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "6ee71af1b3a0deaa53eaf2d39252f83504c853646e472400b763060389b9fcc9"
759
+ dependencies = [
760
+ "document-features",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "embassy-time-queue-utils"
765
+ version = "0.3.0"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "80e2ee86063bd028a420a5fb5898c18c87a8898026da1d4c852af2c443d0a454"
768
+ dependencies = [
769
+ "embassy-executor-timer-queue",
770
+ "heapless 0.8.0",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "embassy-usb"
775
+ version = "0.6.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "a25746d8b152b72fbf2a217f489a083dbbe243f281f09184a1f2cfbe9bbb245f"
778
+ dependencies = [
779
+ "bitflags 2.11.0",
780
+ "defmt 1.0.1",
781
+ "embassy-futures",
782
+ "embassy-net-driver-channel",
783
+ "embassy-sync 0.8.0",
784
+ "embassy-time",
785
+ "embassy-usb-driver",
786
+ "embedded-io-async 0.7.0",
787
+ "heapless 0.9.2",
788
+ "ssmarshal",
789
+ "usbd-hid",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "embassy-usb-dfu"
794
+ version = "0.3.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "e36d3678d16e1e71b052d00f7518620b5839a878f2bdab2019b81d984fb2a74f"
797
+ dependencies = [
798
+ "bitflags 2.11.0",
799
+ "defmt 1.0.1",
800
+ "embassy-boot",
801
+ "embassy-futures",
802
+ "embassy-sync 0.8.0",
803
+ "embassy-time",
804
+ "embassy-usb",
805
+ "embedded-storage",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "embassy-usb-driver"
810
+ version = "0.2.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "17119855ccc2d1f7470a39756b12068454ae27a3eabb037d940b5c03d9c77b7a"
813
+ dependencies = [
814
+ "defmt 1.0.1",
815
+ "embedded-io-async 0.6.1",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "embedded-hal"
820
+ version = "0.2.7"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "35949884794ad573cf46071e41c9b60efb0cb311e3ca01f7af807af1debc66ff"
823
+ dependencies = [
824
+ "nb 0.1.3",
825
+ "void",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "embedded-hal"
830
+ version = "1.0.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89"
833
+
834
+ [[package]]
835
+ name = "embedded-hal-async"
836
+ version = "1.0.0"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "0c4c685bbef7fe13c3c6dd4da26841ed3980ef33e841cddfa15ce8a8fb3f1884"
839
+ dependencies = [
840
+ "embedded-hal 1.0.0",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "embedded-io"
845
+ version = "0.4.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
848
+
849
+ [[package]]
850
+ name = "embedded-io"
851
+ version = "0.6.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
854
+
855
+ [[package]]
856
+ name = "embedded-io"
857
+ version = "0.7.1"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "9eb1aa714776b75c7e67e1da744b81a129b3ff919c8712b5e1b32252c1f07cc7"
860
+
861
+ [[package]]
862
+ name = "embedded-io-async"
863
+ version = "0.6.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "3ff09972d4073aa8c299395be75161d582e7629cd663171d62af73c8d50dba3f"
866
+ dependencies = [
867
+ "embedded-io 0.6.1",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "embedded-io-async"
872
+ version = "0.7.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "2564b9f813c544241430e147d8bc454815ef9ac998878d30cc3055449f7fd4c0"
875
+ dependencies = [
876
+ "embedded-io 0.7.1",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "embedded-storage"
881
+ version = "0.3.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "a21dea9854beb860f3062d10228ce9b976da520a73474aed3171ec276bc0c032"
884
+
885
+ [[package]]
886
+ name = "embedded-storage-async"
887
+ version = "0.4.1"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "1763775e2323b7d5f0aa6090657f5e21cfa02ede71f5dc40eead06d64dcd15cc"
890
+ dependencies = [
891
+ "embedded-storage",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "encode_unicode"
896
+ version = "0.3.6"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
899
+
900
+ [[package]]
901
+ name = "env_filter"
902
+ version = "1.0.1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
905
+ dependencies = [
906
+ "log",
907
+ "regex",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "env_logger"
912
+ version = "0.11.10"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
915
+ dependencies = [
916
+ "anstream",
917
+ "anstyle",
918
+ "env_filter",
919
+ "jiff",
920
+ "log",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "equivalent"
925
+ version = "1.0.2"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
928
+
929
+ [[package]]
930
+ name = "errno"
931
+ version = "0.3.14"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
934
+ dependencies = [
935
+ "libc",
936
+ "windows-sys 0.61.2",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "fastrand"
941
+ version = "2.4.1"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
944
+
945
+ [[package]]
946
+ name = "femtopb"
947
+ version = "0.8.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "7f295e0bface05f3f1b00edc0100c65fe45658e00200a9243b07e59c08a52704"
950
+ dependencies = [
951
+ "defmt 0.3.100",
952
+ "femtopb-derive",
953
+ "thiserror-no-std",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "femtopb-build"
958
+ version = "0.5.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "3d627d924145f191c777569968749f1cb26309e9470191ce50a235c38927a090"
961
+ dependencies = [
962
+ "anyhow",
963
+ "prettyplease",
964
+ "proc-macro2",
965
+ "prost-build",
966
+ "protox",
967
+ "quote",
968
+ "syn 2.0.117",
969
+ "tracing",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "femtopb-derive"
974
+ version = "0.8.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "d124b103593a04be2ec5370029888208873c45026adc3a06dc78752b497a21e2"
977
+ dependencies = [
978
+ "proc-macro2",
979
+ "quote",
980
+ "syn 2.0.117",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "find-msvc-tools"
985
+ version = "0.1.9"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
988
+
989
+ [[package]]
990
+ name = "fixed"
991
+ version = "1.31.0"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "9af2cbf772fa6d1c11358f92ef554cb6b386201210bcf0e91fb7fba8a907fb40"
994
+ dependencies = [
995
+ "az",
996
+ "bytemuck",
997
+ "half",
998
+ "typenum",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "fixedbitset"
1003
+ version = "0.5.7"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1006
+
1007
+ [[package]]
1008
+ name = "flume"
1009
+ version = "0.11.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1012
+ dependencies = [
1013
+ "futures-core",
1014
+ "futures-sink",
1015
+ "spin",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "fnv"
1020
+ version = "1.0.7"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1023
+
1024
+ [[package]]
1025
+ name = "foldhash"
1026
+ version = "0.1.5"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1029
+
1030
+ [[package]]
1031
+ name = "fragile"
1032
+ version = "2.1.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9"
1035
+ dependencies = [
1036
+ "futures-core",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "futures"
1041
+ version = "0.3.32"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1044
+ dependencies = [
1045
+ "futures-channel",
1046
+ "futures-core",
1047
+ "futures-executor",
1048
+ "futures-io",
1049
+ "futures-sink",
1050
+ "futures-task",
1051
+ "futures-util",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "futures-channel"
1056
+ version = "0.3.32"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1059
+ dependencies = [
1060
+ "futures-core",
1061
+ "futures-sink",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "futures-core"
1066
+ version = "0.3.32"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1069
+
1070
+ [[package]]
1071
+ name = "futures-executor"
1072
+ version = "0.3.32"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1075
+ dependencies = [
1076
+ "futures-core",
1077
+ "futures-task",
1078
+ "futures-util",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "futures-io"
1083
+ version = "0.3.32"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1086
+
1087
+ [[package]]
1088
+ name = "futures-macro"
1089
+ version = "0.3.32"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1092
+ dependencies = [
1093
+ "proc-macro2",
1094
+ "quote",
1095
+ "syn 2.0.117",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "futures-sink"
1100
+ version = "0.3.32"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1103
+
1104
+ [[package]]
1105
+ name = "futures-task"
1106
+ version = "0.3.32"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1109
+
1110
+ [[package]]
1111
+ name = "futures-util"
1112
+ version = "0.3.32"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1115
+ dependencies = [
1116
+ "futures-channel",
1117
+ "futures-core",
1118
+ "futures-io",
1119
+ "futures-macro",
1120
+ "futures-sink",
1121
+ "futures-task",
1122
+ "memchr",
1123
+ "pin-project-lite",
1124
+ "slab",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "generator"
1129
+ version = "0.8.8"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1132
+ dependencies = [
1133
+ "cc",
1134
+ "cfg-if",
1135
+ "libc",
1136
+ "log",
1137
+ "rustversion",
1138
+ "windows-link",
1139
+ "windows-result",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "generic-array"
1144
+ version = "0.14.7"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1147
+ dependencies = [
1148
+ "typenum",
1149
+ "version_check",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "geoutils"
1154
+ version = "0.5.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "36d244a08113319b5ebcabad2b8b7925732d15eec46d7e7ac3c11734f3b7a6ad"
1157
+
1158
+ [[package]]
1159
+ name = "getrandom"
1160
+ version = "0.2.17"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1163
+ dependencies = [
1164
+ "cfg-if",
1165
+ "libc",
1166
+ "wasi",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "getrandom"
1171
+ version = "0.3.4"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1174
+ dependencies = [
1175
+ "cfg-if",
1176
+ "libc",
1177
+ "r-efi 5.3.0",
1178
+ "wasip2",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "getrandom"
1183
+ version = "0.4.2"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1186
+ dependencies = [
1187
+ "cfg-if",
1188
+ "libc",
1189
+ "r-efi 6.0.0",
1190
+ "wasip2",
1191
+ "wasip3",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "half"
1196
+ version = "2.7.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1199
+ dependencies = [
1200
+ "cfg-if",
1201
+ "crunchy",
1202
+ "zerocopy",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "hash32"
1207
+ version = "0.2.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
1210
+ dependencies = [
1211
+ "byteorder",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "hash32"
1216
+ version = "0.3.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1219
+ dependencies = [
1220
+ "byteorder",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "hashbrown"
1225
+ version = "0.13.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
1228
+ dependencies = [
1229
+ "ahash",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "hashbrown"
1234
+ version = "0.15.5"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1237
+ dependencies = [
1238
+ "foldhash",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "hashbrown"
1243
+ version = "0.17.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1246
+
1247
+ [[package]]
1248
+ name = "heapless"
1249
+ version = "0.7.17"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
1252
+ dependencies = [
1253
+ "atomic-polyfill",
1254
+ "hash32 0.2.1",
1255
+ "rustc_version 0.4.1",
1256
+ "serde",
1257
+ "spin",
1258
+ "stable_deref_trait",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "heapless"
1263
+ version = "0.8.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1266
+ dependencies = [
1267
+ "hash32 0.3.1",
1268
+ "stable_deref_trait",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "heapless"
1273
+ version = "0.9.2"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "2af2455f757db2b292a9b1768c4b70186d443bcb3b316252d6b540aec1cd89ed"
1276
+ dependencies = [
1277
+ "defmt 1.0.1",
1278
+ "hash32 0.3.1",
1279
+ "serde_core",
1280
+ "stable_deref_trait",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "heck"
1285
+ version = "0.5.0"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1288
+
1289
+ [[package]]
1290
+ name = "iana-time-zone"
1291
+ version = "0.1.65"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1294
+ dependencies = [
1295
+ "android_system_properties",
1296
+ "core-foundation-sys",
1297
+ "iana-time-zone-haiku",
1298
+ "js-sys",
1299
+ "log",
1300
+ "wasm-bindgen",
1301
+ "windows-core",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "iana-time-zone-haiku"
1306
+ version = "0.1.2"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1309
+ dependencies = [
1310
+ "cc",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "id-arena"
1315
+ version = "2.3.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1318
+
1319
+ [[package]]
1320
+ name = "ident_case"
1321
+ version = "1.0.1"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1324
+
1325
+ [[package]]
1326
+ name = "indexmap"
1327
+ version = "2.14.0"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1330
+ dependencies = [
1331
+ "equivalent",
1332
+ "hashbrown 0.17.0",
1333
+ "serde",
1334
+ "serde_core",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "io-kit-sys"
1339
+ version = "0.4.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "617ee6cf8e3f66f3b4ea67a4058564628cde41901316e19f559e14c7c72c5e7b"
1342
+ dependencies = [
1343
+ "core-foundation-sys",
1344
+ "mach2",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "is_terminal_polyfill"
1349
+ version = "1.70.2"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1352
+
1353
+ [[package]]
1354
+ name = "itertools"
1355
+ version = "0.14.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1358
+ dependencies = [
1359
+ "either",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "itoa"
1364
+ version = "1.0.18"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1367
+
1368
+ [[package]]
1369
+ name = "jiff"
1370
+ version = "0.2.23"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
1373
+ dependencies = [
1374
+ "jiff-static",
1375
+ "log",
1376
+ "portable-atomic",
1377
+ "portable-atomic-util",
1378
+ "serde_core",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "jiff-static"
1383
+ version = "0.2.23"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
1386
+ dependencies = [
1387
+ "proc-macro2",
1388
+ "quote",
1389
+ "syn 2.0.117",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "js-sys"
1394
+ version = "0.3.95"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1397
+ dependencies = [
1398
+ "once_cell",
1399
+ "wasm-bindgen",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "lazy_static"
1404
+ version = "1.5.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1407
+
1408
+ [[package]]
1409
+ name = "leb128fmt"
1410
+ version = "0.1.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1413
+
1414
+ [[package]]
1415
+ name = "libc"
1416
+ version = "0.2.184"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
1419
+
1420
+ [[package]]
1421
+ name = "linux-raw-sys"
1422
+ version = "0.12.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1425
+
1426
+ [[package]]
1427
+ name = "litrs"
1428
+ version = "1.0.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1431
+
1432
+ [[package]]
1433
+ name = "lock_api"
1434
+ version = "0.4.14"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1437
+ dependencies = [
1438
+ "scopeguard",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "log"
1443
+ version = "0.4.29"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1446
+
1447
+ [[package]]
1448
+ name = "logos"
1449
+ version = "0.14.4"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "7251356ef8cb7aec833ddf598c6cb24d17b689d20b993f9d11a3d764e34e6458"
1452
+ dependencies = [
1453
+ "logos-derive",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "logos-codegen"
1458
+ version = "0.14.4"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "59f80069600c0d66734f5ff52cc42f2dabd6b29d205f333d61fd7832e9e9963f"
1461
+ dependencies = [
1462
+ "beef",
1463
+ "fnv",
1464
+ "lazy_static",
1465
+ "proc-macro2",
1466
+ "quote",
1467
+ "regex-syntax",
1468
+ "syn 2.0.117",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "logos-derive"
1473
+ version = "0.14.4"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "24fb722b06a9dc12adb0963ed585f19fc61dc5413e6a9be9422ef92c091e731d"
1476
+ dependencies = [
1477
+ "logos-codegen",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "loom"
1482
+ version = "0.7.2"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1485
+ dependencies = [
1486
+ "cfg-if",
1487
+ "generator",
1488
+ "scoped-tls",
1489
+ "tracing",
1490
+ "tracing-subscriber",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "mach2"
1495
+ version = "0.4.3"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1498
+ dependencies = [
1499
+ "libc",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "matchers"
1504
+ version = "0.2.0"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1507
+ dependencies = [
1508
+ "regex-automata",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "memchr"
1513
+ version = "2.8.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1516
+
1517
+ [[package]]
1518
+ name = "meshtastic"
1519
+ version = "0.1.8"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "9bf901325782ca58dcfb24bcc8c357e6404a5a40995afeffcc75c531d5742bb3"
1522
+ dependencies = [
1523
+ "futures-util",
1524
+ "log",
1525
+ "prost 0.14.3",
1526
+ "rand",
1527
+ "serde",
1528
+ "serde_json",
1529
+ "thiserror 2.0.18",
1530
+ "tokio",
1531
+ "tokio-serial",
1532
+ "tokio-util",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "miette"
1537
+ version = "7.6.0"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1540
+ dependencies = [
1541
+ "cfg-if",
1542
+ "miette-derive",
1543
+ "unicode-width",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "miette-derive"
1548
+ version = "7.6.0"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1551
+ dependencies = [
1552
+ "proc-macro2",
1553
+ "quote",
1554
+ "syn 2.0.117",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "mio"
1559
+ version = "1.2.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1562
+ dependencies = [
1563
+ "libc",
1564
+ "log",
1565
+ "wasi",
1566
+ "windows-sys 0.61.2",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "mio-serial"
1571
+ version = "5.0.6"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "029e1f407e261176a983a6599c084efd322d9301028055c87174beac71397ba3"
1574
+ dependencies = [
1575
+ "log",
1576
+ "mio",
1577
+ "nix 0.29.0",
1578
+ "serialport",
1579
+ "winapi",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "mockall"
1584
+ version = "0.13.1"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
1587
+ dependencies = [
1588
+ "cfg-if",
1589
+ "downcast",
1590
+ "fragile",
1591
+ "mockall_derive",
1592
+ "predicates",
1593
+ "predicates-tree",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "mockall_derive"
1598
+ version = "0.13.1"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
1601
+ dependencies = [
1602
+ "cfg-if",
1603
+ "proc-macro2",
1604
+ "quote",
1605
+ "syn 2.0.117",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "multimap"
1610
+ version = "0.10.1"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1613
+
1614
+ [[package]]
1615
+ name = "nb"
1616
+ version = "0.1.3"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "801d31da0513b6ec5214e9bf433a77966320625a37860f910be265be6e18d06f"
1619
+ dependencies = [
1620
+ "nb 1.1.0",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "nb"
1625
+ version = "1.1.0"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d"
1628
+
1629
+ [[package]]
1630
+ name = "nix"
1631
+ version = "0.26.4"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1634
+ dependencies = [
1635
+ "bitflags 1.3.2",
1636
+ "cfg-if",
1637
+ "libc",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "nix"
1642
+ version = "0.29.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1645
+ dependencies = [
1646
+ "bitflags 2.11.0",
1647
+ "cfg-if",
1648
+ "cfg_aliases",
1649
+ "libc",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "nrf-pac"
1654
+ version = "0.3.0"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "bddd547fab92b0553ff37032034fd04ce8b8b60d3f9a83f89ea815dfd0400336"
1657
+ dependencies = [
1658
+ "cortex-m",
1659
+ "cortex-m-rt",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "nrf-softdevice"
1664
+ version = "0.1.0"
1665
+ source = "git+https://github.com/embassy-rs/nrf-softdevice.git?rev=5949a5b1445cc907745c6449a35577e4544cd255#5949a5b1445cc907745c6449a35577e4544cd255"
1666
+ dependencies = [
1667
+ "cortex-m",
1668
+ "critical-section",
1669
+ "defmt 0.3.100",
1670
+ "embassy-futures",
1671
+ "embassy-sync 0.6.2",
1672
+ "embedded-storage",
1673
+ "embedded-storage-async",
1674
+ "fixed",
1675
+ "futures",
1676
+ "heapless 0.8.0",
1677
+ "nrf-softdevice-macro",
1678
+ "nrf-softdevice-s140",
1679
+ "num_enum",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "nrf-softdevice-macro"
1684
+ version = "0.1.0"
1685
+ source = "git+https://github.com/embassy-rs/nrf-softdevice.git?rev=5949a5b1445cc907745c6449a35577e4544cd255#5949a5b1445cc907745c6449a35577e4544cd255"
1686
+ dependencies = [
1687
+ "Inflector",
1688
+ "darling 0.13.4",
1689
+ "proc-macro2",
1690
+ "quote",
1691
+ "syn 1.0.109",
1692
+ "uuid",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "nrf-softdevice-mbr"
1697
+ version = "0.2.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "f47431e7b1c13851c48a77211fac2b7b648b43a9a622f9c40debc76320b93217"
1700
+
1701
+ [[package]]
1702
+ name = "nrf-softdevice-s140"
1703
+ version = "0.1.2"
1704
+ source = "git+https://github.com/embassy-rs/nrf-softdevice.git?rev=5949a5b1445cc907745c6449a35577e4544cd255#5949a5b1445cc907745c6449a35577e4544cd255"
1705
+
1706
+ [[package]]
1707
+ name = "nu-ansi-term"
1708
+ version = "0.50.3"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1711
+ dependencies = [
1712
+ "windows-sys 0.61.2",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "num-traits"
1717
+ version = "0.2.19"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1720
+ dependencies = [
1721
+ "autocfg",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "num_enum"
1726
+ version = "0.7.6"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1729
+ dependencies = [
1730
+ "num_enum_derive",
1731
+ "rustversion",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "num_enum_derive"
1736
+ version = "0.7.6"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1739
+ dependencies = [
1740
+ "proc-macro2",
1741
+ "quote",
1742
+ "syn 2.0.117",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "once_cell"
1747
+ version = "1.21.4"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1750
+
1751
+ [[package]]
1752
+ name = "once_cell_polyfill"
1753
+ version = "1.70.2"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1756
+
1757
+ [[package]]
1758
+ name = "openssl-probe"
1759
+ version = "0.1.6"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1762
+
1763
+ [[package]]
1764
+ name = "panic-probe"
1765
+ version = "1.0.0"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "fd402d00b0fb94c5aee000029204a46884b1262e0c443f166d86d2c0747e1a1a"
1768
+ dependencies = [
1769
+ "cortex-m",
1770
+ "defmt 1.0.1",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "parking_lot"
1775
+ version = "0.12.5"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1778
+ dependencies = [
1779
+ "lock_api",
1780
+ "parking_lot_core",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "parking_lot_core"
1785
+ version = "0.9.12"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1788
+ dependencies = [
1789
+ "cfg-if",
1790
+ "libc",
1791
+ "redox_syscall",
1792
+ "smallvec",
1793
+ "windows-link",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "petgraph"
1798
+ version = "0.7.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1801
+ dependencies = [
1802
+ "fixedbitset",
1803
+ "indexmap",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "pin-project-lite"
1808
+ version = "0.2.17"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1811
+
1812
+ [[package]]
1813
+ name = "portable-atomic"
1814
+ version = "1.13.1"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1817
+
1818
+ [[package]]
1819
+ name = "portable-atomic-util"
1820
+ version = "0.2.6"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
1823
+ dependencies = [
1824
+ "portable-atomic",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "postcard"
1829
+ version = "1.1.3"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1832
+ dependencies = [
1833
+ "cobs",
1834
+ "defmt 1.0.1",
1835
+ "embedded-io 0.4.0",
1836
+ "embedded-io 0.6.1",
1837
+ "heapless 0.7.17",
1838
+ "serde",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "ppv-lite86"
1843
+ version = "0.2.21"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1846
+ dependencies = [
1847
+ "zerocopy",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "predicates"
1852
+ version = "3.1.4"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1855
+ dependencies = [
1856
+ "anstyle",
1857
+ "predicates-core",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "predicates-core"
1862
+ version = "1.0.10"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1865
+
1866
+ [[package]]
1867
+ name = "predicates-tree"
1868
+ version = "1.0.13"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1871
+ dependencies = [
1872
+ "predicates-core",
1873
+ "termtree",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "prettyplease"
1878
+ version = "0.2.37"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1881
+ dependencies = [
1882
+ "proc-macro2",
1883
+ "syn 2.0.117",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "proc-macro-error-attr2"
1888
+ version = "2.0.0"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1891
+ dependencies = [
1892
+ "proc-macro2",
1893
+ "quote",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "proc-macro-error2"
1898
+ version = "2.0.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1901
+ dependencies = [
1902
+ "proc-macro-error-attr2",
1903
+ "proc-macro2",
1904
+ "quote",
1905
+ "syn 2.0.117",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "proc-macro2"
1910
+ version = "1.0.106"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1913
+ dependencies = [
1914
+ "unicode-ident",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "prost"
1919
+ version = "0.13.5"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1922
+ dependencies = [
1923
+ "bytes",
1924
+ "prost-derive 0.13.5",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "prost"
1929
+ version = "0.14.3"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
1932
+ dependencies = [
1933
+ "bytes",
1934
+ "prost-derive 0.14.3",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "prost-build"
1939
+ version = "0.13.5"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
1942
+ dependencies = [
1943
+ "heck",
1944
+ "itertools",
1945
+ "log",
1946
+ "multimap",
1947
+ "once_cell",
1948
+ "petgraph",
1949
+ "prettyplease",
1950
+ "prost 0.13.5",
1951
+ "prost-types",
1952
+ "regex",
1953
+ "syn 2.0.117",
1954
+ "tempfile",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "prost-derive"
1959
+ version = "0.13.5"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1962
+ dependencies = [
1963
+ "anyhow",
1964
+ "itertools",
1965
+ "proc-macro2",
1966
+ "quote",
1967
+ "syn 2.0.117",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "prost-derive"
1972
+ version = "0.14.3"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
1975
+ dependencies = [
1976
+ "anyhow",
1977
+ "itertools",
1978
+ "proc-macro2",
1979
+ "quote",
1980
+ "syn 2.0.117",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "prost-reflect"
1985
+ version = "0.14.7"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "7b5edd582b62f5cde844716e66d92565d7faf7ab1445c8cebce6e00fba83ddb2"
1988
+ dependencies = [
1989
+ "logos",
1990
+ "miette",
1991
+ "once_cell",
1992
+ "prost 0.13.5",
1993
+ "prost-types",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "prost-types"
1998
+ version = "0.13.5"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
2001
+ dependencies = [
2002
+ "prost 0.13.5",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "protox"
2007
+ version = "0.7.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "6f352af331bf637b8ecc720f7c87bf903d2571fa2e14a66e9b2558846864b54a"
2010
+ dependencies = [
2011
+ "bytes",
2012
+ "miette",
2013
+ "prost 0.13.5",
2014
+ "prost-reflect",
2015
+ "prost-types",
2016
+ "protox-parse",
2017
+ "thiserror 1.0.69",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "protox-parse"
2022
+ version = "0.7.0"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "a3a462d115462c080ae000c29a47f0b3985737e5d3a995fcdbcaa5c782068dde"
2025
+ dependencies = [
2026
+ "logos",
2027
+ "miette",
2028
+ "prost-types",
2029
+ "thiserror 1.0.69",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "pyo3"
2034
+ version = "0.28.3"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2037
+ dependencies = [
2038
+ "chrono",
2039
+ "libc",
2040
+ "once_cell",
2041
+ "portable-atomic",
2042
+ "pyo3-build-config",
2043
+ "pyo3-ffi",
2044
+ "pyo3-macros",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "pyo3-async-runtimes"
2049
+ version = "0.28.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
2052
+ dependencies = [
2053
+ "futures-channel",
2054
+ "futures-util",
2055
+ "once_cell",
2056
+ "pin-project-lite",
2057
+ "pyo3",
2058
+ "pyo3-async-runtimes-macros",
2059
+ "tokio",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "pyo3-async-runtimes-macros"
2064
+ version = "0.28.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "c23399970eea9c31d0ac84cee4a9d8dd05f89b1da2f4dd5bb44b32a3f66db4f8"
2067
+ dependencies = [
2068
+ "proc-macro2",
2069
+ "quote",
2070
+ "syn 2.0.117",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "pyo3-build-config"
2075
+ version = "0.28.3"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2078
+ dependencies = [
2079
+ "target-lexicon",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "pyo3-ffi"
2084
+ version = "0.28.3"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2087
+ dependencies = [
2088
+ "libc",
2089
+ "pyo3-build-config",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "pyo3-log"
2094
+ version = "0.13.3"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "26c2ec80932c5c3b2d4fbc578c9b56b2d4502098587edb8bef5b6bfcad43682e"
2097
+ dependencies = [
2098
+ "arc-swap",
2099
+ "log",
2100
+ "pyo3",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "pyo3-macros"
2105
+ version = "0.28.3"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2108
+ dependencies = [
2109
+ "proc-macro2",
2110
+ "pyo3-macros-backend",
2111
+ "quote",
2112
+ "syn 2.0.117",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "pyo3-macros-backend"
2117
+ version = "0.28.3"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2120
+ dependencies = [
2121
+ "heck",
2122
+ "proc-macro2",
2123
+ "pyo3-build-config",
2124
+ "quote",
2125
+ "syn 2.0.117",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "quote"
2130
+ version = "1.0.45"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2133
+ dependencies = [
2134
+ "proc-macro2",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "r-efi"
2139
+ version = "5.3.0"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2142
+
2143
+ [[package]]
2144
+ name = "r-efi"
2145
+ version = "6.0.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2148
+
2149
+ [[package]]
2150
+ name = "rand"
2151
+ version = "0.9.3"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166"
2154
+ dependencies = [
2155
+ "rand_chacha",
2156
+ "rand_core 0.9.5",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "rand_chacha"
2161
+ version = "0.9.0"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2164
+ dependencies = [
2165
+ "ppv-lite86",
2166
+ "rand_core 0.9.5",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "rand_core"
2171
+ version = "0.6.4"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2174
+
2175
+ [[package]]
2176
+ name = "rand_core"
2177
+ version = "0.9.5"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2180
+ dependencies = [
2181
+ "getrandom 0.3.4",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "redox_syscall"
2186
+ version = "0.5.18"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2189
+ dependencies = [
2190
+ "bitflags 2.11.0",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "regex"
2195
+ version = "1.12.3"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2198
+ dependencies = [
2199
+ "aho-corasick",
2200
+ "memchr",
2201
+ "regex-automata",
2202
+ "regex-syntax",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "regex-automata"
2207
+ version = "0.4.14"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2210
+ dependencies = [
2211
+ "aho-corasick",
2212
+ "memchr",
2213
+ "regex-syntax",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "regex-syntax"
2218
+ version = "0.8.10"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2221
+
2222
+ [[package]]
2223
+ name = "ring"
2224
+ version = "0.17.14"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2227
+ dependencies = [
2228
+ "cc",
2229
+ "cfg-if",
2230
+ "getrandom 0.2.17",
2231
+ "libc",
2232
+ "untrusted",
2233
+ "windows-sys 0.52.0",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "rumqttc"
2238
+ version = "0.24.0"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "e1568e15fab2d546f940ed3a21f48bbbd1c494c90c99c4481339364a497f94a9"
2241
+ dependencies = [
2242
+ "bytes",
2243
+ "flume",
2244
+ "futures-util",
2245
+ "log",
2246
+ "rustls-native-certs",
2247
+ "rustls-pemfile",
2248
+ "rustls-webpki",
2249
+ "thiserror 1.0.69",
2250
+ "tokio",
2251
+ "tokio-rustls",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "rustc_version"
2256
+ version = "0.2.3"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2259
+ dependencies = [
2260
+ "semver 0.9.0",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "rustc_version"
2265
+ version = "0.4.1"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2268
+ dependencies = [
2269
+ "semver 1.0.28",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "rustix"
2274
+ version = "1.1.4"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2277
+ dependencies = [
2278
+ "bitflags 2.11.0",
2279
+ "errno",
2280
+ "libc",
2281
+ "linux-raw-sys",
2282
+ "windows-sys 0.61.2",
2283
+ ]
2284
+
2285
+ [[package]]
2286
+ name = "rustls"
2287
+ version = "0.22.4"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2290
+ dependencies = [
2291
+ "log",
2292
+ "ring",
2293
+ "rustls-pki-types",
2294
+ "rustls-webpki",
2295
+ "subtle",
2296
+ "zeroize",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "rustls-native-certs"
2301
+ version = "0.7.3"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
2304
+ dependencies = [
2305
+ "openssl-probe",
2306
+ "rustls-pemfile",
2307
+ "rustls-pki-types",
2308
+ "schannel",
2309
+ "security-framework",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "rustls-pemfile"
2314
+ version = "2.2.0"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2317
+ dependencies = [
2318
+ "rustls-pki-types",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "rustls-pki-types"
2323
+ version = "1.14.0"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2326
+ dependencies = [
2327
+ "zeroize",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "rustls-webpki"
2332
+ version = "0.102.8"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2335
+ dependencies = [
2336
+ "ring",
2337
+ "rustls-pki-types",
2338
+ "untrusted",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "rustversion"
2343
+ version = "1.0.22"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2346
+
2347
+ [[package]]
2348
+ name = "same-file"
2349
+ version = "1.0.6"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2352
+ dependencies = [
2353
+ "winapi-util",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "schannel"
2358
+ version = "0.1.29"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2361
+ dependencies = [
2362
+ "windows-sys 0.61.2",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "scoped-tls"
2367
+ version = "1.0.1"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2370
+
2371
+ [[package]]
2372
+ name = "scopeguard"
2373
+ version = "1.2.0"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2376
+
2377
+ [[package]]
2378
+ name = "security-framework"
2379
+ version = "2.11.1"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2382
+ dependencies = [
2383
+ "bitflags 2.11.0",
2384
+ "core-foundation 0.9.4",
2385
+ "core-foundation-sys",
2386
+ "libc",
2387
+ "security-framework-sys",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "security-framework-sys"
2392
+ version = "2.17.0"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2395
+ dependencies = [
2396
+ "core-foundation-sys",
2397
+ "libc",
2398
+ ]
2399
+
2400
+ [[package]]
2401
+ name = "semver"
2402
+ version = "0.9.0"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2405
+ dependencies = [
2406
+ "semver-parser",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "semver"
2411
+ version = "1.0.28"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2414
+
2415
+ [[package]]
2416
+ name = "semver-parser"
2417
+ version = "0.7.0"
2418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2419
+ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2420
+
2421
+ [[package]]
2422
+ name = "sequential-storage"
2423
+ version = "7.2.0"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "574e5a379bf43653079b34cb4cf32958404b5f42e0ed5b5adcdff02c2de04d4d"
2426
+ dependencies = [
2427
+ "defmt 1.0.1",
2428
+ "embedded-storage-async",
2429
+ "postcard",
2430
+ "serde",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "serde"
2435
+ version = "1.0.228"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2438
+ dependencies = [
2439
+ "serde_core",
2440
+ "serde_derive",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "serde_core"
2445
+ version = "1.0.228"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2448
+ dependencies = [
2449
+ "serde_derive",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "serde_derive"
2454
+ version = "1.0.228"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2457
+ dependencies = [
2458
+ "proc-macro2",
2459
+ "quote",
2460
+ "syn 2.0.117",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "serde_json"
2465
+ version = "1.0.149"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2468
+ dependencies = [
2469
+ "itoa",
2470
+ "memchr",
2471
+ "serde",
2472
+ "serde_core",
2473
+ "zmij",
2474
+ ]
2475
+
2476
+ [[package]]
2477
+ name = "serde_spanned"
2478
+ version = "1.1.1"
2479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2480
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2481
+ dependencies = [
2482
+ "serde_core",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "serialport"
2487
+ version = "4.9.0"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "a4d91116f97173694f1642263b2ff837f80d933aa837e2314969f6728f661df3"
2490
+ dependencies = [
2491
+ "bitflags 2.11.0",
2492
+ "cfg-if",
2493
+ "core-foundation 0.10.1",
2494
+ "core-foundation-sys",
2495
+ "io-kit-sys",
2496
+ "mach2",
2497
+ "nix 0.26.4",
2498
+ "scopeguard",
2499
+ "unescaper",
2500
+ "windows-sys 0.52.0",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "sharded-slab"
2505
+ version = "0.1.7"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2508
+ dependencies = [
2509
+ "lazy_static",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "shlex"
2514
+ version = "1.3.0"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2517
+
2518
+ [[package]]
2519
+ name = "signal-hook-registry"
2520
+ version = "1.4.8"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2523
+ dependencies = [
2524
+ "errno",
2525
+ "libc",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "signature"
2530
+ version = "2.2.0"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2533
+
2534
+ [[package]]
2535
+ name = "slab"
2536
+ version = "0.4.12"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2539
+
2540
+ [[package]]
2541
+ name = "smallvec"
2542
+ version = "1.15.1"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2545
+
2546
+ [[package]]
2547
+ name = "socket2"
2548
+ version = "0.6.3"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2551
+ dependencies = [
2552
+ "libc",
2553
+ "windows-sys 0.61.2",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "spin"
2558
+ version = "0.9.8"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2561
+ dependencies = [
2562
+ "lock_api",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "ssmarshal"
2567
+ version = "1.0.0"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "f3e6ad23b128192ed337dfa4f1b8099ced0c2bf30d61e551b65fda5916dbb850"
2570
+ dependencies = [
2571
+ "encode_unicode",
2572
+ "serde",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "stable_deref_trait"
2577
+ version = "1.2.1"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2580
+
2581
+ [[package]]
2582
+ name = "static_cell"
2583
+ version = "2.1.1"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "0530892bb4fa575ee0da4b86f86c667132a94b74bb72160f58ee5a4afec74c23"
2586
+ dependencies = [
2587
+ "portable-atomic",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "strsim"
2592
+ version = "0.10.0"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2595
+
2596
+ [[package]]
2597
+ name = "strsim"
2598
+ version = "0.11.1"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2601
+
2602
+ [[package]]
2603
+ name = "subtle"
2604
+ version = "2.6.1"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2607
+
2608
+ [[package]]
2609
+ name = "syn"
2610
+ version = "1.0.109"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2613
+ dependencies = [
2614
+ "proc-macro2",
2615
+ "quote",
2616
+ "unicode-ident",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "syn"
2621
+ version = "2.0.117"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2624
+ dependencies = [
2625
+ "proc-macro2",
2626
+ "quote",
2627
+ "unicode-ident",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "target-lexicon"
2632
+ version = "0.13.5"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2635
+
2636
+ [[package]]
2637
+ name = "tempfile"
2638
+ version = "3.27.0"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2641
+ dependencies = [
2642
+ "fastrand",
2643
+ "getrandom 0.4.2",
2644
+ "once_cell",
2645
+ "rustix",
2646
+ "windows-sys 0.61.2",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "termtree"
2651
+ version = "0.5.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2654
+
2655
+ [[package]]
2656
+ name = "thiserror"
2657
+ version = "1.0.69"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2660
+ dependencies = [
2661
+ "thiserror-impl 1.0.69",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "thiserror"
2666
+ version = "2.0.18"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2669
+ dependencies = [
2670
+ "thiserror-impl 2.0.18",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "thiserror-impl"
2675
+ version = "1.0.69"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2678
+ dependencies = [
2679
+ "proc-macro2",
2680
+ "quote",
2681
+ "syn 2.0.117",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "thiserror-impl"
2686
+ version = "2.0.18"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2689
+ dependencies = [
2690
+ "proc-macro2",
2691
+ "quote",
2692
+ "syn 2.0.117",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "thiserror-impl-no-std"
2697
+ version = "2.0.2"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "58e6318948b519ba6dc2b442a6d0b904ebfb8d411a3ad3e07843615a72249758"
2700
+ dependencies = [
2701
+ "proc-macro2",
2702
+ "quote",
2703
+ "syn 1.0.109",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "thiserror-no-std"
2708
+ version = "2.0.2"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "a3ad459d94dd517257cc96add8a43190ee620011bb6e6cdc82dafd97dfafafea"
2711
+ dependencies = [
2712
+ "thiserror-impl-no-std",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "thread_local"
2717
+ version = "1.1.9"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2720
+ dependencies = [
2721
+ "cfg-if",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "tokio"
2726
+ version = "1.51.1"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
2729
+ dependencies = [
2730
+ "bytes",
2731
+ "libc",
2732
+ "mio",
2733
+ "parking_lot",
2734
+ "pin-project-lite",
2735
+ "signal-hook-registry",
2736
+ "socket2",
2737
+ "tokio-macros",
2738
+ "windows-sys 0.61.2",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "tokio-macros"
2743
+ version = "2.7.0"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2746
+ dependencies = [
2747
+ "proc-macro2",
2748
+ "quote",
2749
+ "syn 2.0.117",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "tokio-rustls"
2754
+ version = "0.25.0"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
2757
+ dependencies = [
2758
+ "rustls",
2759
+ "rustls-pki-types",
2760
+ "tokio",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "tokio-serial"
2765
+ version = "5.4.5"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "aa1d5427f11ba7c5e6384521cfd76f2d64572ff29f3f4f7aa0f496282923fdc8"
2768
+ dependencies = [
2769
+ "cfg-if",
2770
+ "futures",
2771
+ "log",
2772
+ "mio-serial",
2773
+ "serialport",
2774
+ "tokio",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "tokio-util"
2779
+ version = "0.7.18"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2782
+ dependencies = [
2783
+ "bytes",
2784
+ "futures-core",
2785
+ "futures-sink",
2786
+ "pin-project-lite",
2787
+ "slab",
2788
+ "tokio",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "toml"
2793
+ version = "1.1.2+spec-1.1.0"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
2796
+ dependencies = [
2797
+ "indexmap",
2798
+ "serde_core",
2799
+ "serde_spanned",
2800
+ "toml_datetime",
2801
+ "toml_parser",
2802
+ "toml_writer",
2803
+ "winnow",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "toml_datetime"
2808
+ version = "1.1.1+spec-1.1.0"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2811
+ dependencies = [
2812
+ "serde_core",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "toml_parser"
2817
+ version = "1.1.2+spec-1.1.0"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2820
+ dependencies = [
2821
+ "winnow",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "toml_writer"
2826
+ version = "1.1.1+spec-1.1.0"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2829
+
2830
+ [[package]]
2831
+ name = "tracing"
2832
+ version = "0.1.44"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2835
+ dependencies = [
2836
+ "pin-project-lite",
2837
+ "tracing-attributes",
2838
+ "tracing-core",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "tracing-attributes"
2843
+ version = "0.1.31"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2846
+ dependencies = [
2847
+ "proc-macro2",
2848
+ "quote",
2849
+ "syn 2.0.117",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "tracing-core"
2854
+ version = "0.1.36"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2857
+ dependencies = [
2858
+ "once_cell",
2859
+ "valuable",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "tracing-log"
2864
+ version = "0.2.0"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2867
+ dependencies = [
2868
+ "log",
2869
+ "once_cell",
2870
+ "tracing-core",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "tracing-subscriber"
2875
+ version = "0.3.23"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2878
+ dependencies = [
2879
+ "matchers",
2880
+ "nu-ansi-term",
2881
+ "once_cell",
2882
+ "regex-automata",
2883
+ "sharded-slab",
2884
+ "smallvec",
2885
+ "thread_local",
2886
+ "tracing",
2887
+ "tracing-core",
2888
+ "tracing-log",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "typenum"
2893
+ version = "1.19.0"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2896
+
2897
+ [[package]]
2898
+ name = "unescaper"
2899
+ version = "0.1.8"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "4064ed685c487dbc25bd3f0e9548f2e34bab9d18cefc700f9ec2dba74ba1138e"
2902
+ dependencies = [
2903
+ "thiserror 2.0.18",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "unicode-ident"
2908
+ version = "1.0.24"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2911
+
2912
+ [[package]]
2913
+ name = "unicode-width"
2914
+ version = "0.1.14"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2917
+
2918
+ [[package]]
2919
+ name = "unicode-xid"
2920
+ version = "0.2.6"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2923
+
2924
+ [[package]]
2925
+ name = "untrusted"
2926
+ version = "0.9.0"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2929
+
2930
+ [[package]]
2931
+ name = "usb-device"
2932
+ version = "0.3.2"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "98816b1accafbb09085168b90f27e93d790b4bfa19d883466b5e53315b5f06a6"
2935
+ dependencies = [
2936
+ "heapless 0.8.0",
2937
+ "portable-atomic",
2938
+ ]
2939
+
2940
+ [[package]]
2941
+ name = "usbd-hid"
2942
+ version = "0.10.0"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "68beab087e4971a2fe76f631478b0e91d39593f58efd2775026ce6dc07a7bac6"
2945
+ dependencies = [
2946
+ "usb-device",
2947
+ "usbd-hid-macros",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "usbd-hid-descriptors"
2952
+ version = "0.10.0"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "b297f021719c4308d5d0c61b6c1e7c6b3ba383deba774b49aa5484f996bdb8f1"
2955
+ dependencies = [
2956
+ "bitfield 0.14.0",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "usbd-hid-macros"
2961
+ version = "0.10.0"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "011a3219e0933f5b3ad7dc90d9a66541a967d084c98c067deed1cd608e557ed7"
2964
+ dependencies = [
2965
+ "byteorder",
2966
+ "hashbrown 0.13.2",
2967
+ "log",
2968
+ "proc-macro2",
2969
+ "quote",
2970
+ "serde",
2971
+ "syn 2.0.117",
2972
+ "usbd-hid-descriptors",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "utf8parse"
2977
+ version = "0.2.2"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2980
+
2981
+ [[package]]
2982
+ name = "uuid"
2983
+ version = "1.23.0"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2986
+ dependencies = [
2987
+ "getrandom 0.4.2",
2988
+ "js-sys",
2989
+ "wasm-bindgen",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "valuable"
2994
+ version = "0.1.1"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2997
+
2998
+ [[package]]
2999
+ name = "vcell"
3000
+ version = "0.1.3"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "77439c1b53d2303b20d9459b1ade71a83c716e3f9c34f3228c00e6f185d6c002"
3003
+
3004
+ [[package]]
3005
+ name = "version_check"
3006
+ version = "0.9.5"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3009
+
3010
+ [[package]]
3011
+ name = "void"
3012
+ version = "1.0.2"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
3015
+
3016
+ [[package]]
3017
+ name = "volatile-register"
3018
+ version = "0.2.2"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "de437e2a6208b014ab52972a27e59b33fa2920d3e00fe05026167a1c509d19cc"
3021
+ dependencies = [
3022
+ "vcell",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "walkdir"
3027
+ version = "2.5.0"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3030
+ dependencies = [
3031
+ "same-file",
3032
+ "winapi-util",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "wasi"
3037
+ version = "0.11.1+wasi-snapshot-preview1"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3040
+
3041
+ [[package]]
3042
+ name = "wasip2"
3043
+ version = "1.0.2+wasi-0.2.9"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3046
+ dependencies = [
3047
+ "wit-bindgen",
3048
+ ]
3049
+
3050
+ [[package]]
3051
+ name = "wasip3"
3052
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3055
+ dependencies = [
3056
+ "wit-bindgen",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "wasm-bindgen"
3061
+ version = "0.2.118"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
3064
+ dependencies = [
3065
+ "cfg-if",
3066
+ "once_cell",
3067
+ "rustversion",
3068
+ "wasm-bindgen-macro",
3069
+ "wasm-bindgen-shared",
3070
+ ]
3071
+
3072
+ [[package]]
3073
+ name = "wasm-bindgen-macro"
3074
+ version = "0.2.118"
3075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3076
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
3077
+ dependencies = [
3078
+ "quote",
3079
+ "wasm-bindgen-macro-support",
3080
+ ]
3081
+
3082
+ [[package]]
3083
+ name = "wasm-bindgen-macro-support"
3084
+ version = "0.2.118"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
3087
+ dependencies = [
3088
+ "bumpalo",
3089
+ "proc-macro2",
3090
+ "quote",
3091
+ "syn 2.0.117",
3092
+ "wasm-bindgen-shared",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "wasm-bindgen-shared"
3097
+ version = "0.2.118"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
3100
+ dependencies = [
3101
+ "unicode-ident",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "wasm-encoder"
3106
+ version = "0.244.0"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3109
+ dependencies = [
3110
+ "leb128fmt",
3111
+ "wasmparser",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "wasm-metadata"
3116
+ version = "0.244.0"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3119
+ dependencies = [
3120
+ "anyhow",
3121
+ "indexmap",
3122
+ "wasm-encoder",
3123
+ "wasmparser",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "wasmparser"
3128
+ version = "0.244.0"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3131
+ dependencies = [
3132
+ "bitflags 2.11.0",
3133
+ "hashbrown 0.15.5",
3134
+ "indexmap",
3135
+ "semver 1.0.28",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "winapi"
3140
+ version = "0.3.9"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3143
+ dependencies = [
3144
+ "winapi-i686-pc-windows-gnu",
3145
+ "winapi-x86_64-pc-windows-gnu",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "winapi-i686-pc-windows-gnu"
3150
+ version = "0.4.0"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3153
+
3154
+ [[package]]
3155
+ name = "winapi-util"
3156
+ version = "0.1.11"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3159
+ dependencies = [
3160
+ "windows-sys 0.61.2",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "winapi-x86_64-pc-windows-gnu"
3165
+ version = "0.4.0"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3168
+
3169
+ [[package]]
3170
+ name = "windows-core"
3171
+ version = "0.62.2"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3174
+ dependencies = [
3175
+ "windows-implement",
3176
+ "windows-interface",
3177
+ "windows-link",
3178
+ "windows-result",
3179
+ "windows-strings",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "windows-implement"
3184
+ version = "0.60.2"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3187
+ dependencies = [
3188
+ "proc-macro2",
3189
+ "quote",
3190
+ "syn 2.0.117",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "windows-interface"
3195
+ version = "0.59.3"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3198
+ dependencies = [
3199
+ "proc-macro2",
3200
+ "quote",
3201
+ "syn 2.0.117",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "windows-link"
3206
+ version = "0.2.1"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3209
+
3210
+ [[package]]
3211
+ name = "windows-result"
3212
+ version = "0.4.1"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3215
+ dependencies = [
3216
+ "windows-link",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "windows-strings"
3221
+ version = "0.5.1"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3224
+ dependencies = [
3225
+ "windows-link",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "windows-sys"
3230
+ version = "0.52.0"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3233
+ dependencies = [
3234
+ "windows-targets",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "windows-sys"
3239
+ version = "0.61.2"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3242
+ dependencies = [
3243
+ "windows-link",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "windows-targets"
3248
+ version = "0.52.6"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3251
+ dependencies = [
3252
+ "windows_aarch64_gnullvm",
3253
+ "windows_aarch64_msvc",
3254
+ "windows_i686_gnu",
3255
+ "windows_i686_gnullvm",
3256
+ "windows_i686_msvc",
3257
+ "windows_x86_64_gnu",
3258
+ "windows_x86_64_gnullvm",
3259
+ "windows_x86_64_msvc",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "windows_aarch64_gnullvm"
3264
+ version = "0.52.6"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3267
+
3268
+ [[package]]
3269
+ name = "windows_aarch64_msvc"
3270
+ version = "0.52.6"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3273
+
3274
+ [[package]]
3275
+ name = "windows_i686_gnu"
3276
+ version = "0.52.6"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3279
+
3280
+ [[package]]
3281
+ name = "windows_i686_gnullvm"
3282
+ version = "0.52.6"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3285
+
3286
+ [[package]]
3287
+ name = "windows_i686_msvc"
3288
+ version = "0.52.6"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3291
+
3292
+ [[package]]
3293
+ name = "windows_x86_64_gnu"
3294
+ version = "0.52.6"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3297
+
3298
+ [[package]]
3299
+ name = "windows_x86_64_gnullvm"
3300
+ version = "0.52.6"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3303
+
3304
+ [[package]]
3305
+ name = "windows_x86_64_msvc"
3306
+ version = "0.52.6"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3309
+
3310
+ [[package]]
3311
+ name = "winnow"
3312
+ version = "1.0.1"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
3315
+
3316
+ [[package]]
3317
+ name = "wit-bindgen"
3318
+ version = "0.51.0"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3321
+ dependencies = [
3322
+ "wit-bindgen-rust-macro",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "wit-bindgen-core"
3327
+ version = "0.51.0"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3330
+ dependencies = [
3331
+ "anyhow",
3332
+ "heck",
3333
+ "wit-parser",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "wit-bindgen-rust"
3338
+ version = "0.51.0"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3341
+ dependencies = [
3342
+ "anyhow",
3343
+ "heck",
3344
+ "indexmap",
3345
+ "prettyplease",
3346
+ "syn 2.0.117",
3347
+ "wasm-metadata",
3348
+ "wit-bindgen-core",
3349
+ "wit-component",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "wit-bindgen-rust-macro"
3354
+ version = "0.51.0"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3357
+ dependencies = [
3358
+ "anyhow",
3359
+ "prettyplease",
3360
+ "proc-macro2",
3361
+ "quote",
3362
+ "syn 2.0.117",
3363
+ "wit-bindgen-core",
3364
+ "wit-bindgen-rust",
3365
+ ]
3366
+
3367
+ [[package]]
3368
+ name = "wit-component"
3369
+ version = "0.244.0"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3372
+ dependencies = [
3373
+ "anyhow",
3374
+ "bitflags 2.11.0",
3375
+ "indexmap",
3376
+ "log",
3377
+ "serde",
3378
+ "serde_derive",
3379
+ "serde_json",
3380
+ "wasm-encoder",
3381
+ "wasm-metadata",
3382
+ "wasmparser",
3383
+ "wit-parser",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "wit-parser"
3388
+ version = "0.244.0"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3391
+ dependencies = [
3392
+ "anyhow",
3393
+ "id-arena",
3394
+ "indexmap",
3395
+ "log",
3396
+ "semver 1.0.28",
3397
+ "serde",
3398
+ "serde_derive",
3399
+ "serde_json",
3400
+ "unicode-xid",
3401
+ "wasmparser",
3402
+ ]
3403
+
3404
+ [[package]]
3405
+ name = "yaroc-common"
3406
+ version = "0.1.0"
3407
+ dependencies = [
3408
+ "chrono",
3409
+ "critical-section",
3410
+ "defmt 1.0.1",
3411
+ "embassy-executor",
3412
+ "embassy-futures",
3413
+ "embassy-nrf",
3414
+ "embassy-sync 0.8.0",
3415
+ "embassy-time",
3416
+ "embassy-usb",
3417
+ "embedded-io-async 0.7.0",
3418
+ "env_logger",
3419
+ "femtopb",
3420
+ "femtopb-build",
3421
+ "geoutils",
3422
+ "heapless 0.9.2",
3423
+ "log",
3424
+ "mockall",
3425
+ "postcard",
3426
+ "sequential-storage",
3427
+ "serde",
3428
+ "static_cell",
3429
+ "thiserror 2.0.18",
3430
+ ]
3431
+
3432
+ [[package]]
3433
+ name = "yaroc-nrf52840"
3434
+ version = "0.1.0"
3435
+ dependencies = [
3436
+ "chrono",
3437
+ "cortex-m",
3438
+ "cortex-m-rt",
3439
+ "cortex-m-semihosting",
3440
+ "defmt 1.0.1",
3441
+ "defmt-rtt",
3442
+ "embassy-boot-nrf",
3443
+ "embassy-embedded-hal",
3444
+ "embassy-executor",
3445
+ "embassy-futures",
3446
+ "embassy-nrf",
3447
+ "embassy-sync 0.8.0",
3448
+ "embassy-time",
3449
+ "embassy-usb",
3450
+ "embassy-usb-dfu",
3451
+ "heapless 0.9.2",
3452
+ "nrf-softdevice",
3453
+ "panic-probe",
3454
+ "postcard",
3455
+ "sequential-storage",
3456
+ "serde",
3457
+ "static_cell",
3458
+ "thiserror 2.0.18",
3459
+ "yaroc-common",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "yaroc-python"
3464
+ version = "0.1.19"
3465
+ dependencies = [
3466
+ "chrono",
3467
+ "clap",
3468
+ "embassy-time",
3469
+ "env_logger",
3470
+ "femtopb",
3471
+ "heapless 0.9.2",
3472
+ "log",
3473
+ "postcard",
3474
+ "pyo3",
3475
+ "pyo3-async-runtimes",
3476
+ "pyo3-log",
3477
+ "regex",
3478
+ "serde",
3479
+ "thiserror 2.0.18",
3480
+ "tokio",
3481
+ "tokio-serial",
3482
+ "toml",
3483
+ "walkdir",
3484
+ "yaroc-common",
3485
+ "yaroc-receiver",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "yaroc-receiver"
3490
+ version = "0.1.0"
3491
+ dependencies = [
3492
+ "chrono",
3493
+ "clap",
3494
+ "env_logger",
3495
+ "femtopb",
3496
+ "futures",
3497
+ "log",
3498
+ "meshtastic",
3499
+ "prost 0.14.3",
3500
+ "rumqttc",
3501
+ "thiserror 2.0.18",
3502
+ "tokio",
3503
+ "tokio-serial",
3504
+ "tokio-util",
3505
+ "uuid",
3506
+ "yaroc-common",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "zerocopy"
3511
+ version = "0.8.48"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3514
+ dependencies = [
3515
+ "zerocopy-derive",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "zerocopy-derive"
3520
+ version = "0.8.48"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3523
+ dependencies = [
3524
+ "proc-macro2",
3525
+ "quote",
3526
+ "syn 2.0.117",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "zeroize"
3531
+ version = "1.8.2"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3534
+
3535
+ [[package]]
3536
+ name = "zmij"
3537
+ version = "1.0.21"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"