knxyz 0.0.1__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 (64) hide show
  1. knxyz-0.0.1/Cargo.lock +836 -0
  2. knxyz-0.0.1/Cargo.toml +20 -0
  3. knxyz-0.0.1/PKG-INFO +6 -0
  4. knxyz-0.0.1/bindings/python/Cargo.toml +22 -0
  5. knxyz-0.0.1/bindings/python/build.rs +6 -0
  6. knxyz-0.0.1/bindings/python/src/lib.rs +1141 -0
  7. knxyz-0.0.1/crates/knx-core/Cargo.toml +26 -0
  8. knxyz-0.0.1/crates/knx-core/src/address.rs +208 -0
  9. knxyz-0.0.1/crates/knx-core/src/apci.rs +41 -0
  10. knxyz-0.0.1/crates/knx-core/src/cemi.rs +330 -0
  11. knxyz-0.0.1/crates/knx-core/src/error.rs +29 -0
  12. knxyz-0.0.1/crates/knx-core/src/knxnetip.rs +297 -0
  13. knxyz-0.0.1/crates/knx-core/src/lib.rs +40 -0
  14. knxyz-0.0.1/crates/knx-dpt/Cargo.toml +29 -0
  15. knxyz-0.0.1/crates/knx-dpt/src/common.rs +129 -0
  16. knxyz-0.0.1/crates/knx-dpt/src/dpt1.rs +21 -0
  17. knxyz-0.0.1/crates/knx-dpt/src/dpt10.rs +71 -0
  18. knxyz-0.0.1/crates/knx-dpt/src/dpt11.rs +78 -0
  19. knxyz-0.0.1/crates/knx-dpt/src/dpt12.rs +2 -0
  20. knxyz-0.0.1/crates/knx-dpt/src/dpt13.rs +48 -0
  21. knxyz-0.0.1/crates/knx-dpt/src/dpt14.rs +22 -0
  22. knxyz-0.0.1/crates/knx-dpt/src/dpt16.rs +51 -0
  23. knxyz-0.0.1/crates/knx-dpt/src/dpt17.rs +30 -0
  24. knxyz-0.0.1/crates/knx-dpt/src/dpt18.rs +33 -0
  25. knxyz-0.0.1/crates/knx-dpt/src/dpt19.rs +176 -0
  26. knxyz-0.0.1/crates/knx-dpt/src/dpt2.rs +25 -0
  27. knxyz-0.0.1/crates/knx-dpt/src/dpt20.rs +89 -0
  28. knxyz-0.0.1/crates/knx-dpt/src/dpt21.rs +23 -0
  29. knxyz-0.0.1/crates/knx-dpt/src/dpt22.rs +24 -0
  30. knxyz-0.0.1/crates/knx-dpt/src/dpt232.rs +36 -0
  31. knxyz-0.0.1/crates/knx-dpt/src/dpt29.rs +25 -0
  32. knxyz-0.0.1/crates/knx-dpt/src/dpt3.rs +35 -0
  33. knxyz-0.0.1/crates/knx-dpt/src/dpt4.rs +41 -0
  34. knxyz-0.0.1/crates/knx-dpt/src/dpt5.rs +45 -0
  35. knxyz-0.0.1/crates/knx-dpt/src/dpt6.rs +2 -0
  36. knxyz-0.0.1/crates/knx-dpt/src/dpt7.rs +2 -0
  37. knxyz-0.0.1/crates/knx-dpt/src/dpt8.rs +2 -0
  38. knxyz-0.0.1/crates/knx-dpt/src/dpt9.rs +99 -0
  39. knxyz-0.0.1/crates/knx-dpt/src/error.rs +18 -0
  40. knxyz-0.0.1/crates/knx-dpt/src/id.rs +40 -0
  41. knxyz-0.0.1/crates/knx-dpt/src/lib.rs +266 -0
  42. knxyz-0.0.1/crates/knx-dpt/src/macros.rs +34 -0
  43. knxyz-0.0.1/crates/knx-dpt/src/value.rs +109 -0
  44. knxyz-0.0.1/crates/knx-ip/Cargo.toml +31 -0
  45. knxyz-0.0.1/crates/knx-ip/src/config.rs +31 -0
  46. knxyz-0.0.1/crates/knx-ip/src/discovery.rs +161 -0
  47. knxyz-0.0.1/crates/knx-ip/src/error.rs +31 -0
  48. knxyz-0.0.1/crates/knx-ip/src/heartbeat.rs +18 -0
  49. knxyz-0.0.1/crates/knx-ip/src/lib.rs +29 -0
  50. knxyz-0.0.1/crates/knx-ip/src/reconnect.rs +30 -0
  51. knxyz-0.0.1/crates/knx-ip/src/routing.rs +293 -0
  52. knxyz-0.0.1/crates/knx-ip/src/telegram.rs +22 -0
  53. knxyz-0.0.1/crates/knx-ip/src/transport.rs +34 -0
  54. knxyz-0.0.1/crates/knx-ip/src/tunnel.rs +602 -0
  55. knxyz-0.0.1/crates/knx-sim/Cargo.toml +20 -0
  56. knxyz-0.0.1/crates/knx-sim/src/bin/knx_sim_lifecycle_fixture.rs +359 -0
  57. knxyz-0.0.1/crates/knx-sim/src/frames.rs +94 -0
  58. knxyz-0.0.1/crates/knx-sim/src/gateway.rs +402 -0
  59. knxyz-0.0.1/crates/knx-sim/src/lib.rs +6 -0
  60. knxyz-0.0.1/crates/knx-sim/src/script.rs +40 -0
  61. knxyz-0.0.1/knxyz/__init__.py +258 -0
  62. knxyz-0.0.1/knxyz/dpt.py +16 -0
  63. knxyz-0.0.1/knxyz/py.typed +1 -0
  64. knxyz-0.0.1/pyproject.toml +19 -0
knxyz-0.0.1/Cargo.lock ADDED
@@ -0,0 +1,836 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
19
+
20
+ [[package]]
21
+ name = "bit-set"
22
+ version = "0.8.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
25
+ dependencies = [
26
+ "bit-vec",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "bit-vec"
31
+ version = "0.8.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
34
+
35
+ [[package]]
36
+ name = "bitflags"
37
+ version = "2.13.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
40
+
41
+ [[package]]
42
+ name = "bytes"
43
+ version = "1.12.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
46
+
47
+ [[package]]
48
+ name = "cfg-if"
49
+ version = "1.0.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
52
+
53
+ [[package]]
54
+ name = "convert_case"
55
+ version = "0.6.0"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
58
+ dependencies = [
59
+ "unicode-segmentation",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "ctor"
64
+ version = "0.2.9"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
67
+ dependencies = [
68
+ "quote",
69
+ "syn",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "errno"
74
+ version = "0.3.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
77
+ dependencies = [
78
+ "libc",
79
+ "windows-sys",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "fastrand"
84
+ version = "2.4.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
87
+
88
+ [[package]]
89
+ name = "fnv"
90
+ version = "1.0.7"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
93
+
94
+ [[package]]
95
+ name = "futures-core"
96
+ version = "0.3.32"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
99
+
100
+ [[package]]
101
+ name = "futures-sink"
102
+ version = "0.3.32"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
105
+
106
+ [[package]]
107
+ name = "getrandom"
108
+ version = "0.3.4"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
111
+ dependencies = [
112
+ "cfg-if",
113
+ "libc",
114
+ "r-efi 5.3.0",
115
+ "wasip2",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "getrandom"
120
+ version = "0.4.3"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
123
+ dependencies = [
124
+ "cfg-if",
125
+ "libc",
126
+ "r-efi 6.0.0",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "heck"
131
+ version = "0.5.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
134
+
135
+ [[package]]
136
+ name = "indoc"
137
+ version = "2.0.7"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
140
+ dependencies = [
141
+ "rustversion",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "itoa"
146
+ version = "1.0.18"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
149
+
150
+ [[package]]
151
+ name = "knx-core"
152
+ version = "0.0.1"
153
+ dependencies = [
154
+ "proptest",
155
+ "serde",
156
+ "serde_json",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "knx-dpt"
161
+ version = "0.0.1"
162
+ dependencies = [
163
+ "proptest",
164
+ "serde",
165
+ "serde_json",
166
+ "thiserror",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "knx-ip"
171
+ version = "0.0.1"
172
+ dependencies = [
173
+ "futures-core",
174
+ "knx-core",
175
+ "knx-dpt",
176
+ "knx-sim",
177
+ "serde",
178
+ "socket2",
179
+ "thiserror",
180
+ "tokio",
181
+ "tokio-stream",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "knx-sim"
186
+ version = "0.0.1"
187
+ dependencies = [
188
+ "knx-core",
189
+ "knx-dpt",
190
+ "knx-ip",
191
+ "thiserror",
192
+ "tokio",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "knxyz"
197
+ version = "0.0.1"
198
+ dependencies = [
199
+ "knx-core",
200
+ "knx-dpt",
201
+ "knx-ip",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "knxyz-node"
206
+ version = "0.0.1"
207
+ dependencies = [
208
+ "knx-core",
209
+ "knx-dpt",
210
+ "knx-ip",
211
+ "napi",
212
+ "napi-derive",
213
+ "serde",
214
+ "serde_json",
215
+ "tokio",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "knxyz-python"
220
+ version = "0.0.1"
221
+ dependencies = [
222
+ "knx-core",
223
+ "knx-dpt",
224
+ "knx-ip",
225
+ "pyo3",
226
+ "serde",
227
+ "serde_json",
228
+ "tokio",
229
+ "tokio-stream",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "libc"
234
+ version = "0.2.186"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
237
+
238
+ [[package]]
239
+ name = "libloading"
240
+ version = "0.8.9"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
243
+ dependencies = [
244
+ "cfg-if",
245
+ "windows-link",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "linux-raw-sys"
250
+ version = "0.12.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
253
+
254
+ [[package]]
255
+ name = "memchr"
256
+ version = "2.8.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
259
+
260
+ [[package]]
261
+ name = "memoffset"
262
+ version = "0.9.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
265
+ dependencies = [
266
+ "autocfg",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "mio"
271
+ version = "1.2.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
274
+ dependencies = [
275
+ "libc",
276
+ "wasi",
277
+ "windows-sys",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "napi"
282
+ version = "2.16.17"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
285
+ dependencies = [
286
+ "bitflags",
287
+ "ctor",
288
+ "napi-derive",
289
+ "napi-sys",
290
+ "once_cell",
291
+ "tokio",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "napi-derive"
296
+ version = "2.16.13"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
299
+ dependencies = [
300
+ "cfg-if",
301
+ "convert_case",
302
+ "napi-derive-backend",
303
+ "proc-macro2",
304
+ "quote",
305
+ "syn",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "napi-derive-backend"
310
+ version = "1.0.75"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
313
+ dependencies = [
314
+ "convert_case",
315
+ "once_cell",
316
+ "proc-macro2",
317
+ "quote",
318
+ "regex",
319
+ "semver",
320
+ "syn",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "napi-sys"
325
+ version = "2.4.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
328
+ dependencies = [
329
+ "libloading",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "num-traits"
334
+ version = "0.2.19"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
337
+ dependencies = [
338
+ "autocfg",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "once_cell"
343
+ version = "1.21.4"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
346
+
347
+ [[package]]
348
+ name = "pin-project-lite"
349
+ version = "0.2.17"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
352
+
353
+ [[package]]
354
+ name = "portable-atomic"
355
+ version = "1.13.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
358
+
359
+ [[package]]
360
+ name = "ppv-lite86"
361
+ version = "0.2.21"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
364
+ dependencies = [
365
+ "zerocopy",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "proc-macro2"
370
+ version = "1.0.106"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
373
+ dependencies = [
374
+ "unicode-ident",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "proptest"
379
+ version = "1.11.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
382
+ dependencies = [
383
+ "bit-set",
384
+ "bit-vec",
385
+ "bitflags",
386
+ "num-traits",
387
+ "rand",
388
+ "rand_chacha",
389
+ "rand_xorshift",
390
+ "regex-syntax",
391
+ "rusty-fork",
392
+ "tempfile",
393
+ "unarray",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "pyo3"
398
+ version = "0.22.6"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
401
+ dependencies = [
402
+ "cfg-if",
403
+ "indoc",
404
+ "libc",
405
+ "memoffset",
406
+ "once_cell",
407
+ "portable-atomic",
408
+ "pyo3-build-config",
409
+ "pyo3-ffi",
410
+ "pyo3-macros",
411
+ "unindent",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "pyo3-build-config"
416
+ version = "0.22.6"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
419
+ dependencies = [
420
+ "once_cell",
421
+ "target-lexicon",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "pyo3-ffi"
426
+ version = "0.22.6"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
429
+ dependencies = [
430
+ "libc",
431
+ "pyo3-build-config",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "pyo3-macros"
436
+ version = "0.22.6"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
439
+ dependencies = [
440
+ "proc-macro2",
441
+ "pyo3-macros-backend",
442
+ "quote",
443
+ "syn",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "pyo3-macros-backend"
448
+ version = "0.22.6"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
451
+ dependencies = [
452
+ "heck",
453
+ "proc-macro2",
454
+ "pyo3-build-config",
455
+ "quote",
456
+ "syn",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "quick-error"
461
+ version = "1.2.3"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
464
+
465
+ [[package]]
466
+ name = "quote"
467
+ version = "1.0.46"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
470
+ dependencies = [
471
+ "proc-macro2",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "r-efi"
476
+ version = "5.3.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
479
+
480
+ [[package]]
481
+ name = "r-efi"
482
+ version = "6.0.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
485
+
486
+ [[package]]
487
+ name = "rand"
488
+ version = "0.9.4"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
491
+ dependencies = [
492
+ "rand_chacha",
493
+ "rand_core",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "rand_chacha"
498
+ version = "0.9.0"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
501
+ dependencies = [
502
+ "ppv-lite86",
503
+ "rand_core",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "rand_core"
508
+ version = "0.9.5"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
511
+ dependencies = [
512
+ "getrandom 0.3.4",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "rand_xorshift"
517
+ version = "0.4.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
520
+ dependencies = [
521
+ "rand_core",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "regex"
526
+ version = "1.12.4"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
529
+ dependencies = [
530
+ "aho-corasick",
531
+ "memchr",
532
+ "regex-automata",
533
+ "regex-syntax",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "regex-automata"
538
+ version = "0.4.14"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
541
+ dependencies = [
542
+ "aho-corasick",
543
+ "memchr",
544
+ "regex-syntax",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "regex-syntax"
549
+ version = "0.8.11"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
552
+
553
+ [[package]]
554
+ name = "rustix"
555
+ version = "1.1.4"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
558
+ dependencies = [
559
+ "bitflags",
560
+ "errno",
561
+ "libc",
562
+ "linux-raw-sys",
563
+ "windows-sys",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "rustversion"
568
+ version = "1.0.22"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
571
+
572
+ [[package]]
573
+ name = "rusty-fork"
574
+ version = "0.3.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
577
+ dependencies = [
578
+ "fnv",
579
+ "quick-error",
580
+ "tempfile",
581
+ "wait-timeout",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "semver"
586
+ version = "1.0.28"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
589
+
590
+ [[package]]
591
+ name = "serde"
592
+ version = "1.0.228"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
595
+ dependencies = [
596
+ "serde_core",
597
+ "serde_derive",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "serde_core"
602
+ version = "1.0.228"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
605
+ dependencies = [
606
+ "serde_derive",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "serde_derive"
611
+ version = "1.0.228"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
614
+ dependencies = [
615
+ "proc-macro2",
616
+ "quote",
617
+ "syn",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "serde_json"
622
+ version = "1.0.150"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
625
+ dependencies = [
626
+ "itoa",
627
+ "memchr",
628
+ "serde",
629
+ "serde_core",
630
+ "zmij",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "socket2"
635
+ version = "0.6.4"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
638
+ dependencies = [
639
+ "libc",
640
+ "windows-sys",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "syn"
645
+ version = "2.0.118"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
648
+ dependencies = [
649
+ "proc-macro2",
650
+ "quote",
651
+ "unicode-ident",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "target-lexicon"
656
+ version = "0.12.16"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
659
+
660
+ [[package]]
661
+ name = "tempfile"
662
+ version = "3.27.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
665
+ dependencies = [
666
+ "fastrand",
667
+ "getrandom 0.4.3",
668
+ "once_cell",
669
+ "rustix",
670
+ "windows-sys",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "thiserror"
675
+ version = "1.0.69"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
678
+ dependencies = [
679
+ "thiserror-impl",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "thiserror-impl"
684
+ version = "1.0.69"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
687
+ dependencies = [
688
+ "proc-macro2",
689
+ "quote",
690
+ "syn",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "tokio"
695
+ version = "1.52.3"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
698
+ dependencies = [
699
+ "libc",
700
+ "mio",
701
+ "pin-project-lite",
702
+ "socket2",
703
+ "tokio-macros",
704
+ "windows-sys",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "tokio-macros"
709
+ version = "2.7.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
712
+ dependencies = [
713
+ "proc-macro2",
714
+ "quote",
715
+ "syn",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "tokio-stream"
720
+ version = "0.1.18"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
723
+ dependencies = [
724
+ "futures-core",
725
+ "pin-project-lite",
726
+ "tokio",
727
+ "tokio-util",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "tokio-util"
732
+ version = "0.7.18"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
735
+ dependencies = [
736
+ "bytes",
737
+ "futures-core",
738
+ "futures-sink",
739
+ "pin-project-lite",
740
+ "tokio",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "unarray"
745
+ version = "0.1.4"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
748
+
749
+ [[package]]
750
+ name = "unicode-ident"
751
+ version = "1.0.24"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
754
+
755
+ [[package]]
756
+ name = "unicode-segmentation"
757
+ version = "1.13.3"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
760
+
761
+ [[package]]
762
+ name = "unindent"
763
+ version = "0.2.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
766
+
767
+ [[package]]
768
+ name = "wait-timeout"
769
+ version = "0.2.1"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
772
+ dependencies = [
773
+ "libc",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "wasi"
778
+ version = "0.11.1+wasi-snapshot-preview1"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
781
+
782
+ [[package]]
783
+ name = "wasip2"
784
+ version = "1.0.4+wasi-0.2.12"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
787
+ dependencies = [
788
+ "wit-bindgen",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "windows-link"
793
+ version = "0.2.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
796
+
797
+ [[package]]
798
+ name = "windows-sys"
799
+ version = "0.61.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
802
+ dependencies = [
803
+ "windows-link",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "wit-bindgen"
808
+ version = "0.57.1"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
811
+
812
+ [[package]]
813
+ name = "zerocopy"
814
+ version = "0.8.52"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
817
+ dependencies = [
818
+ "zerocopy-derive",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "zerocopy-derive"
823
+ version = "0.8.52"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
826
+ dependencies = [
827
+ "proc-macro2",
828
+ "quote",
829
+ "syn",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "zmij"
834
+ version = "1.0.21"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"