rbox 0.1.0__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 (53) hide show
  1. rbox-0.1.0/Cargo.lock +1372 -0
  2. rbox-0.1.0/Cargo.toml +17 -0
  3. rbox-0.1.0/PKG-INFO +78 -0
  4. rbox-0.1.0/bindings/python/Cargo.toml +31 -0
  5. rbox-0.1.0/bindings/python/README.md +42 -0
  6. rbox-0.1.0/bindings/python/build.rs +6 -0
  7. rbox-0.1.0/bindings/python/rbox/__init__.py +14 -0
  8. rbox-0.1.0/bindings/python/rbox/_rbox.pyi +614 -0
  9. rbox-0.1.0/bindings/python/rbox/anlz.py +112 -0
  10. rbox-0.1.0/bindings/python/rbox/masterdb.py +618 -0
  11. rbox-0.1.0/bindings/python/rbox/models.py +47 -0
  12. rbox-0.1.0/bindings/python/rbox/rbxml.py +119 -0
  13. rbox-0.1.0/bindings/python/requirements.txt +7 -0
  14. rbox-0.1.0/bindings/python/src/anlz.rs +191 -0
  15. rbox-0.1.0/bindings/python/src/errors.rs +33 -0
  16. rbox-0.1.0/bindings/python/src/lib.rs +72 -0
  17. rbox-0.1.0/bindings/python/src/masterdb.rs +1485 -0
  18. rbox-0.1.0/bindings/python/src/py_models.rs +7193 -0
  19. rbox-0.1.0/bindings/python/src/util.rs +46 -0
  20. rbox-0.1.0/bindings/python/src/xml.rs +315 -0
  21. rbox-0.1.0/bindings/python/tests/__init__.py +2 -0
  22. rbox-0.1.0/bindings/python/tests/test_anlz.py +35 -0
  23. rbox-0.1.0/bindings/python/tests/test_masterdb.py +82 -0
  24. rbox-0.1.0/pyproject.toml +131 -0
  25. rbox-0.1.0/rbox/Cargo.toml +34 -0
  26. rbox-0.1.0/rbox/README.md +55 -0
  27. rbox-0.1.0/rbox/__init__.py +14 -0
  28. rbox-0.1.0/rbox/_rbox.pyi +614 -0
  29. rbox-0.1.0/rbox/anlz.py +112 -0
  30. rbox-0.1.0/rbox/masterdb.py +618 -0
  31. rbox-0.1.0/rbox/models.py +47 -0
  32. rbox-0.1.0/rbox/rbxml.py +119 -0
  33. rbox-0.1.0/rbox/src/anlz/anlz.rs +1624 -0
  34. rbox-0.1.0/rbox/src/anlz/mod.rs +7 -0
  35. rbox-0.1.0/rbox/src/anlz/xor.rs +81 -0
  36. rbox-0.1.0/rbox/src/lib.rs +17 -0
  37. rbox-0.1.0/rbox/src/masterdb/database.rs +2969 -0
  38. rbox-0.1.0/rbox/src/masterdb/enums.rs +108 -0
  39. rbox-0.1.0/rbox/src/masterdb/mod.rs +98 -0
  40. rbox-0.1.0/rbox/src/masterdb/models.rs +2186 -0
  41. rbox-0.1.0/rbox/src/masterdb/playlist_xml.rs +306 -0
  42. rbox-0.1.0/rbox/src/masterdb/random_id.rs +42 -0
  43. rbox-0.1.0/rbox/src/masterdb/schema.rs +856 -0
  44. rbox-0.1.0/rbox/src/masterdb/util.rs +63 -0
  45. rbox-0.1.0/rbox/src/options.rs +86 -0
  46. rbox-0.1.0/rbox/src/pathlib.rs +155 -0
  47. rbox-0.1.0/rbox/src/prelude.rs +7 -0
  48. rbox-0.1.0/rbox/src/util.rs +136 -0
  49. rbox-0.1.0/rbox/src/xml.rs +1001 -0
  50. rbox-0.1.0/rbox/tests/common/mod.rs +109 -0
  51. rbox-0.1.0/rbox/tests/test_anlz.rs +290 -0
  52. rbox-0.1.0/rbox/tests/test_masterdb.rs +822 -0
  53. rbox-0.1.0/rbox/tests/test_xml.rs +25 -0
rbox-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,1372 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android-tzdata"
16
+ version = "0.1.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anyhow"
31
+ version = "1.0.98"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
34
+
35
+ [[package]]
36
+ name = "array-init"
37
+ version = "2.1.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.4.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
46
+
47
+ [[package]]
48
+ name = "binrw"
49
+ version = "0.15.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "81419ff39e6ed10a92a7f125290859776ced35d9a08a665ae40b23e7ca702f30"
52
+ dependencies = [
53
+ "array-init",
54
+ "binrw_derive",
55
+ "bytemuck",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "binrw_derive"
60
+ version = "0.15.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "376404e55ec40d0d6f8b4b7df3f87b87954bd987f0cf9a7207ea3b6ea5c9add4"
63
+ dependencies = [
64
+ "either",
65
+ "owo-colors",
66
+ "proc-macro2",
67
+ "quote",
68
+ "syn",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "bitflags"
73
+ version = "2.9.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
76
+
77
+ [[package]]
78
+ name = "bumpalo"
79
+ version = "3.18.1"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
82
+
83
+ [[package]]
84
+ name = "bytemuck"
85
+ version = "1.23.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
88
+
89
+ [[package]]
90
+ name = "cc"
91
+ version = "1.2.26"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac"
94
+ dependencies = [
95
+ "shlex",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "cfg-if"
100
+ version = "1.0.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
103
+
104
+ [[package]]
105
+ name = "chrono"
106
+ version = "0.4.41"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
109
+ dependencies = [
110
+ "android-tzdata",
111
+ "iana-time-zone",
112
+ "js-sys",
113
+ "num-traits",
114
+ "serde",
115
+ "wasm-bindgen",
116
+ "windows-link",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "convert_case"
121
+ version = "0.6.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
124
+ dependencies = [
125
+ "unicode-segmentation",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "core-foundation-sys"
130
+ version = "0.8.7"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
133
+
134
+ [[package]]
135
+ name = "ctor"
136
+ version = "0.2.9"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
139
+ dependencies = [
140
+ "quote",
141
+ "syn",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "darling"
146
+ version = "0.20.11"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
149
+ dependencies = [
150
+ "darling_core",
151
+ "darling_macro",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "darling_core"
156
+ version = "0.20.11"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
159
+ dependencies = [
160
+ "fnv",
161
+ "ident_case",
162
+ "proc-macro2",
163
+ "quote",
164
+ "strsim",
165
+ "syn",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "darling_macro"
170
+ version = "0.20.11"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
173
+ dependencies = [
174
+ "darling_core",
175
+ "quote",
176
+ "syn",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "deranged"
181
+ version = "0.4.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
184
+ dependencies = [
185
+ "powerfmt",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "diesel"
190
+ version = "2.2.10"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "ff3e1edb1f37b4953dd5176916347289ed43d7119cc2e6c7c3f7849ff44ea506"
193
+ dependencies = [
194
+ "diesel_derives",
195
+ "libsqlite3-sys",
196
+ "time",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "diesel_derives"
201
+ version = "2.2.5"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "68d4216021b3ea446fd2047f5c8f8fe6e98af34508a254a01e4d6bc1e844f84d"
204
+ dependencies = [
205
+ "diesel_table_macro_syntax",
206
+ "dsl_auto_type",
207
+ "proc-macro2",
208
+ "quote",
209
+ "syn",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "diesel_table_macro_syntax"
214
+ version = "0.2.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25"
217
+ dependencies = [
218
+ "syn",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "dirs"
223
+ version = "6.0.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
226
+ dependencies = [
227
+ "dirs-sys",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "dirs-sys"
232
+ version = "0.5.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
235
+ dependencies = [
236
+ "libc",
237
+ "option-ext",
238
+ "redox_users",
239
+ "windows-sys",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "dsl_auto_type"
244
+ version = "0.1.3"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "139ae9aca7527f85f26dd76483eb38533fd84bd571065da1739656ef71c5ff5b"
247
+ dependencies = [
248
+ "darling",
249
+ "either",
250
+ "heck",
251
+ "proc-macro2",
252
+ "quote",
253
+ "syn",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "dunce"
258
+ version = "1.0.5"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
261
+
262
+ [[package]]
263
+ name = "either"
264
+ version = "1.15.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
267
+
268
+ [[package]]
269
+ name = "fnv"
270
+ version = "1.0.7"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
273
+
274
+ [[package]]
275
+ name = "getrandom"
276
+ version = "0.2.16"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
279
+ dependencies = [
280
+ "cfg-if",
281
+ "libc",
282
+ "wasi 0.11.0+wasi-snapshot-preview1",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "getrandom"
287
+ version = "0.3.3"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
290
+ dependencies = [
291
+ "cfg-if",
292
+ "libc",
293
+ "r-efi",
294
+ "wasi 0.14.2+wasi-0.2.4",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "heck"
299
+ version = "0.5.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
302
+
303
+ [[package]]
304
+ name = "iana-time-zone"
305
+ version = "0.1.63"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
308
+ dependencies = [
309
+ "android_system_properties",
310
+ "core-foundation-sys",
311
+ "iana-time-zone-haiku",
312
+ "js-sys",
313
+ "log",
314
+ "wasm-bindgen",
315
+ "windows-core",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "iana-time-zone-haiku"
320
+ version = "0.1.2"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
323
+ dependencies = [
324
+ "cc",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "ident_case"
329
+ version = "1.0.1"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
332
+
333
+ [[package]]
334
+ name = "indoc"
335
+ version = "2.0.6"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
338
+
339
+ [[package]]
340
+ name = "itoa"
341
+ version = "1.0.15"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
344
+
345
+ [[package]]
346
+ name = "js-sys"
347
+ version = "0.3.77"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
350
+ dependencies = [
351
+ "once_cell",
352
+ "wasm-bindgen",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "lazy-regex"
357
+ version = "3.4.1"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "60c7310b93682b36b98fa7ea4de998d3463ccbebd94d935d6b48ba5b6ffa7126"
360
+ dependencies = [
361
+ "lazy-regex-proc_macros",
362
+ "once_cell",
363
+ "regex",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "lazy-regex-proc_macros"
368
+ version = "3.4.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "4ba01db5ef81e17eb10a5e0f2109d1b3a3e29bac3070fdbd7d156bf7dbd206a1"
371
+ dependencies = [
372
+ "proc-macro2",
373
+ "quote",
374
+ "regex",
375
+ "syn",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "libc"
380
+ version = "0.2.172"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
383
+
384
+ [[package]]
385
+ name = "libloading"
386
+ version = "0.8.8"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
389
+ dependencies = [
390
+ "cfg-if",
391
+ "windows-targets 0.53.0",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "libredox"
396
+ version = "0.1.3"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
399
+ dependencies = [
400
+ "bitflags",
401
+ "libc",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "libsqlite3-sys"
406
+ version = "0.33.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "947e6816f7825b2b45027c2c32e7085da9934defa535de4a6a46b10a4d5257fa"
409
+ dependencies = [
410
+ "cc",
411
+ "pkg-config",
412
+ "vcpkg",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "log"
417
+ version = "0.4.27"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
420
+
421
+ [[package]]
422
+ name = "memchr"
423
+ version = "2.7.4"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
426
+
427
+ [[package]]
428
+ name = "memoffset"
429
+ version = "0.9.1"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
432
+ dependencies = [
433
+ "autocfg",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "modular-bitfield"
438
+ version = "0.12.0"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "be0d5274763b5572c8f29dadb5cd0bc59de64c805de433c1b556075f733b0a1a"
441
+ dependencies = [
442
+ "modular-bitfield-impl",
443
+ "static_assertions",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "modular-bitfield-impl"
448
+ version = "0.12.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "f8eec4327f127d4d18c54c8bfbf7b05d74cc9a1befdcc6283a241238ffbc84c6"
451
+ dependencies = [
452
+ "proc-macro2",
453
+ "quote",
454
+ "syn",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "napi"
459
+ version = "2.16.17"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
462
+ dependencies = [
463
+ "bitflags",
464
+ "ctor",
465
+ "napi-derive",
466
+ "napi-sys",
467
+ "once_cell",
468
+ "serde",
469
+ "serde_json",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "napi-build"
474
+ version = "2.2.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "44e0e3177307063d3e7e55b7dd7b648cca9d7f46daa35422c0d98cc2bf48c2c1"
477
+
478
+ [[package]]
479
+ name = "napi-derive"
480
+ version = "2.16.13"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
483
+ dependencies = [
484
+ "cfg-if",
485
+ "convert_case",
486
+ "napi-derive-backend",
487
+ "proc-macro2",
488
+ "quote",
489
+ "syn",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "napi-derive-backend"
494
+ version = "1.0.75"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
497
+ dependencies = [
498
+ "convert_case",
499
+ "once_cell",
500
+ "proc-macro2",
501
+ "quote",
502
+ "regex",
503
+ "semver",
504
+ "syn",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "napi-sys"
509
+ version = "2.4.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
512
+ dependencies = [
513
+ "libloading",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "ntapi"
518
+ version = "0.4.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
521
+ dependencies = [
522
+ "winapi",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "num-conv"
527
+ version = "0.1.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
530
+
531
+ [[package]]
532
+ name = "num-traits"
533
+ version = "0.2.19"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
536
+ dependencies = [
537
+ "autocfg",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "objc2-core-foundation"
542
+ version = "0.3.1"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
545
+ dependencies = [
546
+ "bitflags",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "objc2-io-kit"
551
+ version = "0.3.1"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a"
554
+ dependencies = [
555
+ "libc",
556
+ "objc2-core-foundation",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "once_cell"
561
+ version = "1.21.3"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
564
+
565
+ [[package]]
566
+ name = "option-ext"
567
+ version = "0.2.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
570
+
571
+ [[package]]
572
+ name = "owo-colors"
573
+ version = "4.2.1"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "26995317201fa17f3656c36716aed4a7c81743a9634ac4c99c0eeda495db0cec"
576
+
577
+ [[package]]
578
+ name = "pkg-config"
579
+ version = "0.3.32"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
582
+
583
+ [[package]]
584
+ name = "portable-atomic"
585
+ version = "1.11.1"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
588
+
589
+ [[package]]
590
+ name = "powerfmt"
591
+ version = "0.2.0"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
594
+
595
+ [[package]]
596
+ name = "ppv-lite86"
597
+ version = "0.2.21"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
600
+ dependencies = [
601
+ "zerocopy",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "proc-macro2"
606
+ version = "1.0.95"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
609
+ dependencies = [
610
+ "unicode-ident",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "pyo3"
615
+ version = "0.24.2"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
618
+ dependencies = [
619
+ "anyhow",
620
+ "cfg-if",
621
+ "chrono",
622
+ "indoc",
623
+ "libc",
624
+ "memoffset",
625
+ "once_cell",
626
+ "portable-atomic",
627
+ "pyo3-build-config",
628
+ "pyo3-ffi",
629
+ "pyo3-macros",
630
+ "serde",
631
+ "unindent",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "pyo3-build-config"
636
+ version = "0.24.2"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
639
+ dependencies = [
640
+ "once_cell",
641
+ "target-lexicon",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "pyo3-ffi"
646
+ version = "0.24.2"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
649
+ dependencies = [
650
+ "libc",
651
+ "pyo3-build-config",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "pyo3-macros"
656
+ version = "0.24.2"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
659
+ dependencies = [
660
+ "proc-macro2",
661
+ "pyo3-macros-backend",
662
+ "quote",
663
+ "syn",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "pyo3-macros-backend"
668
+ version = "0.24.2"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
671
+ dependencies = [
672
+ "heck",
673
+ "proc-macro2",
674
+ "pyo3-build-config",
675
+ "quote",
676
+ "syn",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "quick-xml"
681
+ version = "0.37.5"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
684
+ dependencies = [
685
+ "memchr",
686
+ "serde",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "quote"
691
+ version = "1.0.40"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
694
+ dependencies = [
695
+ "proc-macro2",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "r-efi"
700
+ version = "5.2.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
703
+
704
+ [[package]]
705
+ name = "rand"
706
+ version = "0.9.1"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
709
+ dependencies = [
710
+ "rand_chacha",
711
+ "rand_core",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "rand_chacha"
716
+ version = "0.9.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
719
+ dependencies = [
720
+ "ppv-lite86",
721
+ "rand_core",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "rand_core"
726
+ version = "0.9.3"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
729
+ dependencies = [
730
+ "getrandom 0.3.3",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "rbox"
735
+ version = "0.1.0"
736
+ dependencies = [
737
+ "anyhow",
738
+ "binrw",
739
+ "chrono",
740
+ "diesel",
741
+ "dirs",
742
+ "dunce",
743
+ "lazy-regex",
744
+ "libsqlite3-sys",
745
+ "modular-bitfield",
746
+ "quick-xml",
747
+ "rand",
748
+ "serde",
749
+ "serde_json",
750
+ "sysinfo",
751
+ "uuid",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "rbox-js"
756
+ version = "0.1.0"
757
+ dependencies = [
758
+ "chrono",
759
+ "napi",
760
+ "napi-build",
761
+ "napi-derive",
762
+ "rbox",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "rbox-py"
767
+ version = "0.1.0"
768
+ dependencies = [
769
+ "chrono",
770
+ "pyo3",
771
+ "pyo3-build-config",
772
+ "rbox",
773
+ "serde",
774
+ "serde_json",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "redox_users"
779
+ version = "0.5.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
782
+ dependencies = [
783
+ "getrandom 0.2.16",
784
+ "libredox",
785
+ "thiserror",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "regex"
790
+ version = "1.11.1"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
793
+ dependencies = [
794
+ "aho-corasick",
795
+ "memchr",
796
+ "regex-automata",
797
+ "regex-syntax",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "regex-automata"
802
+ version = "0.4.9"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
805
+ dependencies = [
806
+ "aho-corasick",
807
+ "memchr",
808
+ "regex-syntax",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "regex-syntax"
813
+ version = "0.8.5"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
816
+
817
+ [[package]]
818
+ name = "rustversion"
819
+ version = "1.0.21"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
822
+
823
+ [[package]]
824
+ name = "ryu"
825
+ version = "1.0.20"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
828
+
829
+ [[package]]
830
+ name = "semver"
831
+ version = "1.0.26"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
834
+
835
+ [[package]]
836
+ name = "serde"
837
+ version = "1.0.219"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
840
+ dependencies = [
841
+ "serde_derive",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "serde_derive"
846
+ version = "1.0.219"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
849
+ dependencies = [
850
+ "proc-macro2",
851
+ "quote",
852
+ "syn",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "serde_json"
857
+ version = "1.0.140"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
860
+ dependencies = [
861
+ "itoa",
862
+ "memchr",
863
+ "ryu",
864
+ "serde",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "shlex"
869
+ version = "1.3.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
872
+
873
+ [[package]]
874
+ name = "static_assertions"
875
+ version = "1.1.0"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
878
+
879
+ [[package]]
880
+ name = "strsim"
881
+ version = "0.11.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
884
+
885
+ [[package]]
886
+ name = "syn"
887
+ version = "2.0.101"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
890
+ dependencies = [
891
+ "proc-macro2",
892
+ "quote",
893
+ "unicode-ident",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "sysinfo"
898
+ version = "0.35.2"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "3c3ffa3e4ff2b324a57f7aeb3c349656c7b127c3c189520251a648102a92496e"
901
+ dependencies = [
902
+ "libc",
903
+ "memchr",
904
+ "ntapi",
905
+ "objc2-core-foundation",
906
+ "objc2-io-kit",
907
+ "windows",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "target-lexicon"
912
+ version = "0.13.2"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
915
+
916
+ [[package]]
917
+ name = "thiserror"
918
+ version = "2.0.12"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
921
+ dependencies = [
922
+ "thiserror-impl",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "thiserror-impl"
927
+ version = "2.0.12"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
930
+ dependencies = [
931
+ "proc-macro2",
932
+ "quote",
933
+ "syn",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "time"
938
+ version = "0.3.41"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
941
+ dependencies = [
942
+ "deranged",
943
+ "itoa",
944
+ "num-conv",
945
+ "powerfmt",
946
+ "serde",
947
+ "time-core",
948
+ "time-macros",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "time-core"
953
+ version = "0.1.4"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
956
+
957
+ [[package]]
958
+ name = "time-macros"
959
+ version = "0.2.22"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
962
+ dependencies = [
963
+ "num-conv",
964
+ "time-core",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "unicode-ident"
969
+ version = "1.0.18"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
972
+
973
+ [[package]]
974
+ name = "unicode-segmentation"
975
+ version = "1.12.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
978
+
979
+ [[package]]
980
+ name = "unindent"
981
+ version = "0.2.4"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
984
+
985
+ [[package]]
986
+ name = "uuid"
987
+ version = "1.17.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
990
+ dependencies = [
991
+ "getrandom 0.3.3",
992
+ "js-sys",
993
+ "wasm-bindgen",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "vcpkg"
998
+ version = "0.2.15"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1001
+
1002
+ [[package]]
1003
+ name = "wasi"
1004
+ version = "0.11.0+wasi-snapshot-preview1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1007
+
1008
+ [[package]]
1009
+ name = "wasi"
1010
+ version = "0.14.2+wasi-0.2.4"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1013
+ dependencies = [
1014
+ "wit-bindgen-rt",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "wasm-bindgen"
1019
+ version = "0.2.100"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1022
+ dependencies = [
1023
+ "cfg-if",
1024
+ "once_cell",
1025
+ "rustversion",
1026
+ "wasm-bindgen-macro",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "wasm-bindgen-backend"
1031
+ version = "0.2.100"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1034
+ dependencies = [
1035
+ "bumpalo",
1036
+ "log",
1037
+ "proc-macro2",
1038
+ "quote",
1039
+ "syn",
1040
+ "wasm-bindgen-shared",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "wasm-bindgen-macro"
1045
+ version = "0.2.100"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1048
+ dependencies = [
1049
+ "quote",
1050
+ "wasm-bindgen-macro-support",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "wasm-bindgen-macro-support"
1055
+ version = "0.2.100"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1058
+ dependencies = [
1059
+ "proc-macro2",
1060
+ "quote",
1061
+ "syn",
1062
+ "wasm-bindgen-backend",
1063
+ "wasm-bindgen-shared",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "wasm-bindgen-shared"
1068
+ version = "0.2.100"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1071
+ dependencies = [
1072
+ "unicode-ident",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "winapi"
1077
+ version = "0.3.9"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1080
+ dependencies = [
1081
+ "winapi-i686-pc-windows-gnu",
1082
+ "winapi-x86_64-pc-windows-gnu",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "winapi-i686-pc-windows-gnu"
1087
+ version = "0.4.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1090
+
1091
+ [[package]]
1092
+ name = "winapi-x86_64-pc-windows-gnu"
1093
+ version = "0.4.0"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1096
+
1097
+ [[package]]
1098
+ name = "windows"
1099
+ version = "0.61.1"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419"
1102
+ dependencies = [
1103
+ "windows-collections",
1104
+ "windows-core",
1105
+ "windows-future",
1106
+ "windows-link",
1107
+ "windows-numerics",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "windows-collections"
1112
+ version = "0.2.0"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
1115
+ dependencies = [
1116
+ "windows-core",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "windows-core"
1121
+ version = "0.61.2"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1124
+ dependencies = [
1125
+ "windows-implement",
1126
+ "windows-interface",
1127
+ "windows-link",
1128
+ "windows-result",
1129
+ "windows-strings",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "windows-future"
1134
+ version = "0.2.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
1137
+ dependencies = [
1138
+ "windows-core",
1139
+ "windows-link",
1140
+ "windows-threading",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "windows-implement"
1145
+ version = "0.60.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1148
+ dependencies = [
1149
+ "proc-macro2",
1150
+ "quote",
1151
+ "syn",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "windows-interface"
1156
+ version = "0.59.1"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1159
+ dependencies = [
1160
+ "proc-macro2",
1161
+ "quote",
1162
+ "syn",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "windows-link"
1167
+ version = "0.1.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
1170
+
1171
+ [[package]]
1172
+ name = "windows-numerics"
1173
+ version = "0.2.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
1176
+ dependencies = [
1177
+ "windows-core",
1178
+ "windows-link",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "windows-result"
1183
+ version = "0.3.4"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
1186
+ dependencies = [
1187
+ "windows-link",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "windows-strings"
1192
+ version = "0.4.2"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
1195
+ dependencies = [
1196
+ "windows-link",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "windows-sys"
1201
+ version = "0.59.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1204
+ dependencies = [
1205
+ "windows-targets 0.52.6",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "windows-targets"
1210
+ version = "0.52.6"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1213
+ dependencies = [
1214
+ "windows_aarch64_gnullvm 0.52.6",
1215
+ "windows_aarch64_msvc 0.52.6",
1216
+ "windows_i686_gnu 0.52.6",
1217
+ "windows_i686_gnullvm 0.52.6",
1218
+ "windows_i686_msvc 0.52.6",
1219
+ "windows_x86_64_gnu 0.52.6",
1220
+ "windows_x86_64_gnullvm 0.52.6",
1221
+ "windows_x86_64_msvc 0.52.6",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "windows-targets"
1226
+ version = "0.53.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
1229
+ dependencies = [
1230
+ "windows_aarch64_gnullvm 0.53.0",
1231
+ "windows_aarch64_msvc 0.53.0",
1232
+ "windows_i686_gnu 0.53.0",
1233
+ "windows_i686_gnullvm 0.53.0",
1234
+ "windows_i686_msvc 0.53.0",
1235
+ "windows_x86_64_gnu 0.53.0",
1236
+ "windows_x86_64_gnullvm 0.53.0",
1237
+ "windows_x86_64_msvc 0.53.0",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "windows-threading"
1242
+ version = "0.1.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
1245
+ dependencies = [
1246
+ "windows-link",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "windows_aarch64_gnullvm"
1251
+ version = "0.52.6"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1254
+
1255
+ [[package]]
1256
+ name = "windows_aarch64_gnullvm"
1257
+ version = "0.53.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1260
+
1261
+ [[package]]
1262
+ name = "windows_aarch64_msvc"
1263
+ version = "0.52.6"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1266
+
1267
+ [[package]]
1268
+ name = "windows_aarch64_msvc"
1269
+ version = "0.53.0"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1272
+
1273
+ [[package]]
1274
+ name = "windows_i686_gnu"
1275
+ version = "0.52.6"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1278
+
1279
+ [[package]]
1280
+ name = "windows_i686_gnu"
1281
+ version = "0.53.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1284
+
1285
+ [[package]]
1286
+ name = "windows_i686_gnullvm"
1287
+ version = "0.52.6"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1290
+
1291
+ [[package]]
1292
+ name = "windows_i686_gnullvm"
1293
+ version = "0.53.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1296
+
1297
+ [[package]]
1298
+ name = "windows_i686_msvc"
1299
+ version = "0.52.6"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1302
+
1303
+ [[package]]
1304
+ name = "windows_i686_msvc"
1305
+ version = "0.53.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1308
+
1309
+ [[package]]
1310
+ name = "windows_x86_64_gnu"
1311
+ version = "0.52.6"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1314
+
1315
+ [[package]]
1316
+ name = "windows_x86_64_gnu"
1317
+ version = "0.53.0"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1320
+
1321
+ [[package]]
1322
+ name = "windows_x86_64_gnullvm"
1323
+ version = "0.52.6"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1326
+
1327
+ [[package]]
1328
+ name = "windows_x86_64_gnullvm"
1329
+ version = "0.53.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1332
+
1333
+ [[package]]
1334
+ name = "windows_x86_64_msvc"
1335
+ version = "0.52.6"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1338
+
1339
+ [[package]]
1340
+ name = "windows_x86_64_msvc"
1341
+ version = "0.53.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1344
+
1345
+ [[package]]
1346
+ name = "wit-bindgen-rt"
1347
+ version = "0.39.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1350
+ dependencies = [
1351
+ "bitflags",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "zerocopy"
1356
+ version = "0.8.25"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
1359
+ dependencies = [
1360
+ "zerocopy-derive",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "zerocopy-derive"
1365
+ version = "0.8.25"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
1368
+ dependencies = [
1369
+ "proc-macro2",
1370
+ "quote",
1371
+ "syn",
1372
+ ]