csvdb-py 0.2.6__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 (35) hide show
  1. csvdb_py-0.2.6/Cargo.lock +3361 -0
  2. csvdb_py-0.2.6/Cargo.toml +3 -0
  3. csvdb_py-0.2.6/PKG-INFO +695 -0
  4. csvdb_py-0.2.6/README.md +683 -0
  5. csvdb_py-0.2.6/csvdb/Cargo.toml +29 -0
  6. csvdb_py-0.2.6/csvdb/README.md +683 -0
  7. csvdb_py-0.2.6/csvdb/build.rs +6 -0
  8. csvdb_py-0.2.6/csvdb/src/commands/checksum.rs +529 -0
  9. csvdb_py-0.2.6/csvdb/src/commands/diff.rs +507 -0
  10. csvdb_py-0.2.6/csvdb/src/commands/hooks.rs +328 -0
  11. csvdb_py-0.2.6/csvdb/src/commands/init.rs +1409 -0
  12. csvdb_py-0.2.6/csvdb/src/commands/mod.rs +11 -0
  13. csvdb_py-0.2.6/csvdb/src/commands/sql.rs +436 -0
  14. csvdb_py-0.2.6/csvdb/src/commands/to_csv.rs +632 -0
  15. csvdb_py-0.2.6/csvdb/src/commands/to_duckdb.rs +317 -0
  16. csvdb_py-0.2.6/csvdb/src/commands/to_parquetdb.rs +426 -0
  17. csvdb_py-0.2.6/csvdb/src/commands/to_sqlite.rs +353 -0
  18. csvdb_py-0.2.6/csvdb/src/commands/validate.rs +599 -0
  19. csvdb_py-0.2.6/csvdb/src/commands/watch.rs +140 -0
  20. csvdb_py-0.2.6/csvdb/src/core/config.rs +138 -0
  21. csvdb_py-0.2.6/csvdb/src/core/csv.rs +405 -0
  22. csvdb_py-0.2.6/csvdb/src/core/input.rs +156 -0
  23. csvdb_py-0.2.6/csvdb/src/core/mod.rs +9 -0
  24. csvdb_py-0.2.6/csvdb/src/core/schema.rs +893 -0
  25. csvdb_py-0.2.6/csvdb/src/core/table.rs +944 -0
  26. csvdb_py-0.2.6/csvdb/src/lib.rs +185 -0
  27. csvdb_py-0.2.6/csvdb/src/main.rs +562 -0
  28. csvdb_py-0.2.6/csvdb-python/Cargo.toml +14 -0
  29. csvdb_py-0.2.6/csvdb-python/README.md +683 -0
  30. csvdb_py-0.2.6/csvdb-python/examples/advanced_usage.py +277 -0
  31. csvdb_py-0.2.6/csvdb-python/examples/basic_usage.py +124 -0
  32. csvdb_py-0.2.6/csvdb-python/src/lib.rs +340 -0
  33. csvdb_py-0.2.6/csvdb-python/tests/conftest.py +115 -0
  34. csvdb_py-0.2.6/csvdb-python/tests/test_bindings.py +224 -0
  35. csvdb_py-0.2.6/pyproject.toml +26 -0
@@ -0,0 +1,3361 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.17",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.12"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "const-random",
30
+ "getrandom 0.3.4",
31
+ "once_cell",
32
+ "version_check",
33
+ "zerocopy",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "1.1.4"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "android_system_properties"
47
+ version = "0.1.5"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
50
+ dependencies = [
51
+ "libc",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anstream"
56
+ version = "0.6.21"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
59
+ dependencies = [
60
+ "anstyle",
61
+ "anstyle-parse",
62
+ "anstyle-query",
63
+ "anstyle-wincon",
64
+ "colorchoice",
65
+ "is_terminal_polyfill",
66
+ "utf8parse",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "anstyle"
71
+ version = "1.0.13"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
74
+
75
+ [[package]]
76
+ name = "anstyle-parse"
77
+ version = "0.2.7"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
80
+ dependencies = [
81
+ "utf8parse",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "anstyle-query"
86
+ version = "1.1.5"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
89
+ dependencies = [
90
+ "windows-sys 0.61.2",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anstyle-wincon"
95
+ version = "3.0.11"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
98
+ dependencies = [
99
+ "anstyle",
100
+ "once_cell_polyfill",
101
+ "windows-sys 0.61.2",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "anyhow"
106
+ version = "1.0.100"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
109
+
110
+ [[package]]
111
+ name = "arbitrary"
112
+ version = "1.4.2"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
115
+ dependencies = [
116
+ "derive_arbitrary",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "arrayvec"
121
+ version = "0.7.6"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
124
+
125
+ [[package]]
126
+ name = "arrow"
127
+ version = "56.2.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "6e833808ff2d94ed40d9379848a950d995043c7fb3e81a30b383f4c6033821cc"
130
+ dependencies = [
131
+ "arrow-arith",
132
+ "arrow-array",
133
+ "arrow-buffer",
134
+ "arrow-cast",
135
+ "arrow-data",
136
+ "arrow-ord",
137
+ "arrow-row",
138
+ "arrow-schema",
139
+ "arrow-select",
140
+ "arrow-string",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "arrow-arith"
145
+ version = "56.2.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "ad08897b81588f60ba983e3ca39bda2b179bdd84dced378e7df81a5313802ef8"
148
+ dependencies = [
149
+ "arrow-array",
150
+ "arrow-buffer",
151
+ "arrow-data",
152
+ "arrow-schema",
153
+ "chrono",
154
+ "num",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "arrow-array"
159
+ version = "56.2.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d"
162
+ dependencies = [
163
+ "ahash 0.8.12",
164
+ "arrow-buffer",
165
+ "arrow-data",
166
+ "arrow-schema",
167
+ "chrono",
168
+ "half",
169
+ "hashbrown 0.16.1",
170
+ "num",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "arrow-buffer"
175
+ version = "56.2.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc"
178
+ dependencies = [
179
+ "bytes",
180
+ "half",
181
+ "num",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "arrow-cast"
186
+ version = "56.2.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023"
189
+ dependencies = [
190
+ "arrow-array",
191
+ "arrow-buffer",
192
+ "arrow-data",
193
+ "arrow-schema",
194
+ "arrow-select",
195
+ "atoi",
196
+ "base64",
197
+ "chrono",
198
+ "comfy-table",
199
+ "half",
200
+ "lexical-core",
201
+ "num",
202
+ "ryu",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "arrow-data"
207
+ version = "56.2.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0"
210
+ dependencies = [
211
+ "arrow-buffer",
212
+ "arrow-schema",
213
+ "half",
214
+ "num",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "arrow-ord"
219
+ version = "56.2.0"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "3c8f82583eb4f8d84d4ee55fd1cb306720cddead7596edce95b50ee418edf66f"
222
+ dependencies = [
223
+ "arrow-array",
224
+ "arrow-buffer",
225
+ "arrow-data",
226
+ "arrow-schema",
227
+ "arrow-select",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "arrow-row"
232
+ version = "56.2.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "9d07ba24522229d9085031df6b94605e0f4b26e099fb7cdeec37abd941a73753"
235
+ dependencies = [
236
+ "arrow-array",
237
+ "arrow-buffer",
238
+ "arrow-data",
239
+ "arrow-schema",
240
+ "half",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "arrow-schema"
245
+ version = "56.2.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe"
248
+ dependencies = [
249
+ "bitflags 2.10.0",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "arrow-select"
254
+ version = "56.2.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a"
257
+ dependencies = [
258
+ "ahash 0.8.12",
259
+ "arrow-array",
260
+ "arrow-buffer",
261
+ "arrow-data",
262
+ "arrow-schema",
263
+ "num",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "arrow-string"
268
+ version = "56.2.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "53f5183c150fbc619eede22b861ea7c0eebed8eaac0333eaa7f6da5205fd504d"
271
+ dependencies = [
272
+ "arrow-array",
273
+ "arrow-buffer",
274
+ "arrow-data",
275
+ "arrow-schema",
276
+ "arrow-select",
277
+ "memchr",
278
+ "num",
279
+ "regex",
280
+ "regex-syntax",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "atoi"
285
+ version = "2.0.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
288
+ dependencies = [
289
+ "num-traits",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "atomic-waker"
294
+ version = "1.1.2"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
297
+
298
+ [[package]]
299
+ name = "autocfg"
300
+ version = "1.5.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
303
+
304
+ [[package]]
305
+ name = "base64"
306
+ version = "0.22.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
309
+
310
+ [[package]]
311
+ name = "bitflags"
312
+ version = "1.3.2"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
315
+
316
+ [[package]]
317
+ name = "bitflags"
318
+ version = "2.10.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
321
+
322
+ [[package]]
323
+ name = "bitvec"
324
+ version = "1.0.1"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
327
+ dependencies = [
328
+ "funty",
329
+ "radium",
330
+ "tap",
331
+ "wyz",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "block-buffer"
336
+ version = "0.10.4"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
339
+ dependencies = [
340
+ "generic-array",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "borsh"
345
+ version = "1.6.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
348
+ dependencies = [
349
+ "borsh-derive",
350
+ "cfg_aliases",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "borsh-derive"
355
+ version = "1.6.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
358
+ dependencies = [
359
+ "once_cell",
360
+ "proc-macro-crate",
361
+ "proc-macro2",
362
+ "quote",
363
+ "syn 2.0.114",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "bumpalo"
368
+ version = "3.19.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
371
+
372
+ [[package]]
373
+ name = "bytecheck"
374
+ version = "0.6.12"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
377
+ dependencies = [
378
+ "bytecheck_derive",
379
+ "ptr_meta",
380
+ "simdutf8",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "bytecheck_derive"
385
+ version = "0.6.12"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
388
+ dependencies = [
389
+ "proc-macro2",
390
+ "quote",
391
+ "syn 1.0.109",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "bytes"
396
+ version = "1.11.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
399
+
400
+ [[package]]
401
+ name = "cast"
402
+ version = "0.3.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
405
+
406
+ [[package]]
407
+ name = "cc"
408
+ version = "1.2.54"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
411
+ dependencies = [
412
+ "find-msvc-tools",
413
+ "jobserver",
414
+ "libc",
415
+ "shlex",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "cfg-if"
420
+ version = "1.0.4"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
423
+
424
+ [[package]]
425
+ name = "cfg_aliases"
426
+ version = "0.2.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
429
+
430
+ [[package]]
431
+ name = "chrono"
432
+ version = "0.4.43"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
435
+ dependencies = [
436
+ "iana-time-zone",
437
+ "num-traits",
438
+ "windows-link",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "clap"
443
+ version = "4.5.55"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "3e34525d5bbbd55da2bb745d34b36121baac88d07619a9a09cfcf4a6c0832785"
446
+ dependencies = [
447
+ "clap_builder",
448
+ "clap_derive",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "clap_builder"
453
+ version = "4.5.55"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "59a20016a20a3da95bef50ec7238dbd09baeef4311dcdd38ec15aba69812fb61"
456
+ dependencies = [
457
+ "anstream",
458
+ "anstyle",
459
+ "clap_lex",
460
+ "strsim",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "clap_derive"
465
+ version = "4.5.55"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
468
+ dependencies = [
469
+ "heck",
470
+ "proc-macro2",
471
+ "quote",
472
+ "syn 2.0.114",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "clap_lex"
477
+ version = "0.7.7"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
480
+
481
+ [[package]]
482
+ name = "colorchoice"
483
+ version = "1.0.4"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
486
+
487
+ [[package]]
488
+ name = "comfy-table"
489
+ version = "7.1.2"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "e0d05af1e006a2407bedef5af410552494ce5be9090444dbbcb57258c1af3d56"
492
+ dependencies = [
493
+ "crossterm 0.27.0",
494
+ "crossterm 0.28.1",
495
+ "strum 0.26.3",
496
+ "strum_macros 0.26.4",
497
+ "unicode-width",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "console"
502
+ version = "0.15.11"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
505
+ dependencies = [
506
+ "encode_unicode",
507
+ "libc",
508
+ "once_cell",
509
+ "unicode-width",
510
+ "windows-sys 0.59.0",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "const-random"
515
+ version = "0.1.18"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
518
+ dependencies = [
519
+ "const-random-macro",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "const-random-macro"
524
+ version = "0.1.16"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
527
+ dependencies = [
528
+ "getrandom 0.2.17",
529
+ "once_cell",
530
+ "tiny-keccak",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "core-foundation-sys"
535
+ version = "0.8.7"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
538
+
539
+ [[package]]
540
+ name = "cpufeatures"
541
+ version = "0.2.17"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
544
+ dependencies = [
545
+ "libc",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "crc32fast"
550
+ version = "1.5.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
553
+ dependencies = [
554
+ "cfg-if",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "crossbeam-deque"
559
+ version = "0.8.6"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
562
+ dependencies = [
563
+ "crossbeam-epoch",
564
+ "crossbeam-utils",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "crossbeam-epoch"
569
+ version = "0.9.18"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
572
+ dependencies = [
573
+ "crossbeam-utils",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "crossbeam-utils"
578
+ version = "0.8.21"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
581
+
582
+ [[package]]
583
+ name = "crossterm"
584
+ version = "0.27.0"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
587
+ dependencies = [
588
+ "bitflags 2.10.0",
589
+ "crossterm_winapi",
590
+ "libc",
591
+ "parking_lot",
592
+ "winapi",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "crossterm"
597
+ version = "0.28.1"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
600
+ dependencies = [
601
+ "bitflags 2.10.0",
602
+ "parking_lot",
603
+ "rustix 0.38.44",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "crossterm_winapi"
608
+ version = "0.9.1"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
611
+ dependencies = [
612
+ "winapi",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "crunchy"
617
+ version = "0.2.4"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
620
+
621
+ [[package]]
622
+ name = "crypto-common"
623
+ version = "0.1.7"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
626
+ dependencies = [
627
+ "generic-array",
628
+ "typenum",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "csv"
633
+ version = "1.4.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
636
+ dependencies = [
637
+ "csv-core",
638
+ "itoa",
639
+ "ryu",
640
+ "serde_core",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "csv-core"
645
+ version = "0.1.13"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
648
+ dependencies = [
649
+ "memchr",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "csvdb"
654
+ version = "0.2.6"
655
+ dependencies = [
656
+ "anyhow",
657
+ "arrow",
658
+ "clap",
659
+ "comfy-table",
660
+ "csv",
661
+ "duckdb",
662
+ "flate2",
663
+ "indicatif",
664
+ "notify",
665
+ "rayon",
666
+ "regex",
667
+ "rusqlite",
668
+ "serde",
669
+ "sha2",
670
+ "tempfile",
671
+ "toml",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "csvdb-ffi"
676
+ version = "0.2.6"
677
+ dependencies = [
678
+ "csv",
679
+ "csvdb",
680
+ "rusqlite",
681
+ "tempfile",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "csvdb-python"
686
+ version = "0.2.6"
687
+ dependencies = [
688
+ "anyhow",
689
+ "csvdb",
690
+ "pyo3",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "derive_arbitrary"
695
+ version = "1.4.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
698
+ dependencies = [
699
+ "proc-macro2",
700
+ "quote",
701
+ "syn 2.0.114",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "digest"
706
+ version = "0.10.7"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
709
+ dependencies = [
710
+ "block-buffer",
711
+ "crypto-common",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "displaydoc"
716
+ version = "0.2.5"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
719
+ dependencies = [
720
+ "proc-macro2",
721
+ "quote",
722
+ "syn 2.0.114",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "duckdb"
727
+ version = "1.4.4"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "8685352ce688883098b61a361e86e87df66fc8c444f4a2411e884c16d5243a65"
730
+ dependencies = [
731
+ "arrow",
732
+ "cast",
733
+ "fallible-iterator",
734
+ "fallible-streaming-iterator",
735
+ "hashlink 0.10.0",
736
+ "libduckdb-sys",
737
+ "num-integer",
738
+ "rust_decimal",
739
+ "strum 0.27.2",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "either"
744
+ version = "1.15.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
747
+
748
+ [[package]]
749
+ name = "encode_unicode"
750
+ version = "1.0.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
753
+
754
+ [[package]]
755
+ name = "equivalent"
756
+ version = "1.0.2"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
759
+
760
+ [[package]]
761
+ name = "errno"
762
+ version = "0.3.14"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
765
+ dependencies = [
766
+ "libc",
767
+ "windows-sys 0.61.2",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "fallible-iterator"
772
+ version = "0.3.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
775
+
776
+ [[package]]
777
+ name = "fallible-streaming-iterator"
778
+ version = "0.1.9"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
781
+
782
+ [[package]]
783
+ name = "fastrand"
784
+ version = "2.3.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
787
+
788
+ [[package]]
789
+ name = "filetime"
790
+ version = "0.2.27"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
793
+ dependencies = [
794
+ "cfg-if",
795
+ "libc",
796
+ "libredox",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "find-msvc-tools"
801
+ version = "0.1.8"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
804
+
805
+ [[package]]
806
+ name = "flate2"
807
+ version = "1.1.8"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
810
+ dependencies = [
811
+ "crc32fast",
812
+ "miniz_oxide",
813
+ "zlib-rs",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "foldhash"
818
+ version = "0.1.5"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
821
+
822
+ [[package]]
823
+ name = "form_urlencoded"
824
+ version = "1.2.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
827
+ dependencies = [
828
+ "percent-encoding",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "fsevent-sys"
833
+ version = "4.1.0"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
836
+ dependencies = [
837
+ "libc",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "funty"
842
+ version = "2.0.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
845
+
846
+ [[package]]
847
+ name = "futures-channel"
848
+ version = "0.3.31"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
851
+ dependencies = [
852
+ "futures-core",
853
+ "futures-sink",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "futures-core"
858
+ version = "0.3.31"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
861
+
862
+ [[package]]
863
+ name = "futures-io"
864
+ version = "0.3.31"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
867
+
868
+ [[package]]
869
+ name = "futures-sink"
870
+ version = "0.3.31"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
873
+
874
+ [[package]]
875
+ name = "futures-task"
876
+ version = "0.3.31"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
879
+
880
+ [[package]]
881
+ name = "futures-util"
882
+ version = "0.3.31"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
885
+ dependencies = [
886
+ "futures-core",
887
+ "futures-io",
888
+ "futures-sink",
889
+ "futures-task",
890
+ "memchr",
891
+ "pin-project-lite",
892
+ "pin-utils",
893
+ "slab",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "generic-array"
898
+ version = "0.14.7"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
901
+ dependencies = [
902
+ "typenum",
903
+ "version_check",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "getrandom"
908
+ version = "0.2.17"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
911
+ dependencies = [
912
+ "cfg-if",
913
+ "js-sys",
914
+ "libc",
915
+ "wasi",
916
+ "wasm-bindgen",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "getrandom"
921
+ version = "0.3.4"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
924
+ dependencies = [
925
+ "cfg-if",
926
+ "js-sys",
927
+ "libc",
928
+ "r-efi",
929
+ "wasip2",
930
+ "wasm-bindgen",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "half"
935
+ version = "2.7.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
938
+ dependencies = [
939
+ "cfg-if",
940
+ "crunchy",
941
+ "num-traits",
942
+ "zerocopy",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "hashbrown"
947
+ version = "0.12.3"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
950
+ dependencies = [
951
+ "ahash 0.7.8",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "hashbrown"
956
+ version = "0.14.5"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
959
+ dependencies = [
960
+ "ahash 0.8.12",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "hashbrown"
965
+ version = "0.15.5"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
968
+ dependencies = [
969
+ "foldhash",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "hashbrown"
974
+ version = "0.16.1"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
977
+
978
+ [[package]]
979
+ name = "hashlink"
980
+ version = "0.9.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
983
+ dependencies = [
984
+ "hashbrown 0.14.5",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "hashlink"
989
+ version = "0.10.0"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
992
+ dependencies = [
993
+ "hashbrown 0.15.5",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "heck"
998
+ version = "0.5.0"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1001
+
1002
+ [[package]]
1003
+ name = "http"
1004
+ version = "1.4.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1007
+ dependencies = [
1008
+ "bytes",
1009
+ "itoa",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "http-body"
1014
+ version = "1.0.1"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1017
+ dependencies = [
1018
+ "bytes",
1019
+ "http",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "http-body-util"
1024
+ version = "0.1.3"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1027
+ dependencies = [
1028
+ "bytes",
1029
+ "futures-core",
1030
+ "http",
1031
+ "http-body",
1032
+ "pin-project-lite",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "httparse"
1037
+ version = "1.10.1"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1040
+
1041
+ [[package]]
1042
+ name = "hyper"
1043
+ version = "1.8.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1046
+ dependencies = [
1047
+ "atomic-waker",
1048
+ "bytes",
1049
+ "futures-channel",
1050
+ "futures-core",
1051
+ "http",
1052
+ "http-body",
1053
+ "httparse",
1054
+ "itoa",
1055
+ "pin-project-lite",
1056
+ "pin-utils",
1057
+ "smallvec",
1058
+ "tokio",
1059
+ "want",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "hyper-rustls"
1064
+ version = "0.27.7"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1067
+ dependencies = [
1068
+ "http",
1069
+ "hyper",
1070
+ "hyper-util",
1071
+ "rustls",
1072
+ "rustls-pki-types",
1073
+ "tokio",
1074
+ "tokio-rustls",
1075
+ "tower-service",
1076
+ "webpki-roots",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "hyper-util"
1081
+ version = "0.1.19"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1084
+ dependencies = [
1085
+ "base64",
1086
+ "bytes",
1087
+ "futures-channel",
1088
+ "futures-core",
1089
+ "futures-util",
1090
+ "http",
1091
+ "http-body",
1092
+ "hyper",
1093
+ "ipnet",
1094
+ "libc",
1095
+ "percent-encoding",
1096
+ "pin-project-lite",
1097
+ "socket2",
1098
+ "tokio",
1099
+ "tower-service",
1100
+ "tracing",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "iana-time-zone"
1105
+ version = "0.1.64"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1108
+ dependencies = [
1109
+ "android_system_properties",
1110
+ "core-foundation-sys",
1111
+ "iana-time-zone-haiku",
1112
+ "js-sys",
1113
+ "log",
1114
+ "wasm-bindgen",
1115
+ "windows-core",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "iana-time-zone-haiku"
1120
+ version = "0.1.2"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1123
+ dependencies = [
1124
+ "cc",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "icu_collections"
1129
+ version = "2.1.1"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1132
+ dependencies = [
1133
+ "displaydoc",
1134
+ "potential_utf",
1135
+ "yoke",
1136
+ "zerofrom",
1137
+ "zerovec",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "icu_locale_core"
1142
+ version = "2.1.1"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1145
+ dependencies = [
1146
+ "displaydoc",
1147
+ "litemap",
1148
+ "tinystr",
1149
+ "writeable",
1150
+ "zerovec",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "icu_normalizer"
1155
+ version = "2.1.1"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1158
+ dependencies = [
1159
+ "icu_collections",
1160
+ "icu_normalizer_data",
1161
+ "icu_properties",
1162
+ "icu_provider",
1163
+ "smallvec",
1164
+ "zerovec",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "icu_normalizer_data"
1169
+ version = "2.1.1"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1172
+
1173
+ [[package]]
1174
+ name = "icu_properties"
1175
+ version = "2.1.2"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1178
+ dependencies = [
1179
+ "icu_collections",
1180
+ "icu_locale_core",
1181
+ "icu_properties_data",
1182
+ "icu_provider",
1183
+ "zerotrie",
1184
+ "zerovec",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "icu_properties_data"
1189
+ version = "2.1.2"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1192
+
1193
+ [[package]]
1194
+ name = "icu_provider"
1195
+ version = "2.1.1"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1198
+ dependencies = [
1199
+ "displaydoc",
1200
+ "icu_locale_core",
1201
+ "writeable",
1202
+ "yoke",
1203
+ "zerofrom",
1204
+ "zerotrie",
1205
+ "zerovec",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "idna"
1210
+ version = "1.1.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1213
+ dependencies = [
1214
+ "idna_adapter",
1215
+ "smallvec",
1216
+ "utf8_iter",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "idna_adapter"
1221
+ version = "1.2.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1224
+ dependencies = [
1225
+ "icu_normalizer",
1226
+ "icu_properties",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "indexmap"
1231
+ version = "2.13.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1234
+ dependencies = [
1235
+ "equivalent",
1236
+ "hashbrown 0.16.1",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "indicatif"
1241
+ version = "0.17.11"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1244
+ dependencies = [
1245
+ "console",
1246
+ "number_prefix",
1247
+ "portable-atomic",
1248
+ "unicode-width",
1249
+ "web-time",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "indoc"
1254
+ version = "2.0.7"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1257
+ dependencies = [
1258
+ "rustversion",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "inotify"
1263
+ version = "0.10.2"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
1266
+ dependencies = [
1267
+ "bitflags 1.3.2",
1268
+ "inotify-sys",
1269
+ "libc",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "inotify-sys"
1274
+ version = "0.1.5"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1277
+ dependencies = [
1278
+ "libc",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "instant"
1283
+ version = "0.1.13"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1286
+ dependencies = [
1287
+ "cfg-if",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "ipnet"
1292
+ version = "2.11.0"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1295
+
1296
+ [[package]]
1297
+ name = "iri-string"
1298
+ version = "0.7.10"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1301
+ dependencies = [
1302
+ "memchr",
1303
+ "serde",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "is_terminal_polyfill"
1308
+ version = "1.70.2"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1311
+
1312
+ [[package]]
1313
+ name = "itoa"
1314
+ version = "1.0.17"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1317
+
1318
+ [[package]]
1319
+ name = "jobserver"
1320
+ version = "0.1.34"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1323
+ dependencies = [
1324
+ "getrandom 0.3.4",
1325
+ "libc",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "js-sys"
1330
+ version = "0.3.85"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1333
+ dependencies = [
1334
+ "once_cell",
1335
+ "wasm-bindgen",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "kqueue"
1340
+ version = "1.1.1"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1343
+ dependencies = [
1344
+ "kqueue-sys",
1345
+ "libc",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "kqueue-sys"
1350
+ version = "1.0.4"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1353
+ dependencies = [
1354
+ "bitflags 1.3.2",
1355
+ "libc",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "lexical-core"
1360
+ version = "1.0.6"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1363
+ dependencies = [
1364
+ "lexical-parse-float",
1365
+ "lexical-parse-integer",
1366
+ "lexical-util",
1367
+ "lexical-write-float",
1368
+ "lexical-write-integer",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "lexical-parse-float"
1373
+ version = "1.0.6"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1376
+ dependencies = [
1377
+ "lexical-parse-integer",
1378
+ "lexical-util",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "lexical-parse-integer"
1383
+ version = "1.0.6"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1386
+ dependencies = [
1387
+ "lexical-util",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "lexical-util"
1392
+ version = "1.0.7"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1395
+
1396
+ [[package]]
1397
+ name = "lexical-write-float"
1398
+ version = "1.0.6"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1401
+ dependencies = [
1402
+ "lexical-util",
1403
+ "lexical-write-integer",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "lexical-write-integer"
1408
+ version = "1.0.6"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1411
+ dependencies = [
1412
+ "lexical-util",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "libc"
1417
+ version = "0.2.180"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1420
+
1421
+ [[package]]
1422
+ name = "libduckdb-sys"
1423
+ version = "1.4.4"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "d78bacb8933586cee3b550c39b610d314f9b7a48701ac7a914a046165a4ad8da"
1426
+ dependencies = [
1427
+ "cc",
1428
+ "flate2",
1429
+ "pkg-config",
1430
+ "reqwest",
1431
+ "serde",
1432
+ "serde_json",
1433
+ "tar",
1434
+ "vcpkg",
1435
+ "zip",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "libm"
1440
+ version = "0.2.16"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1443
+
1444
+ [[package]]
1445
+ name = "libredox"
1446
+ version = "0.1.12"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1449
+ dependencies = [
1450
+ "bitflags 2.10.0",
1451
+ "libc",
1452
+ "redox_syscall 0.7.0",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "libsqlite3-sys"
1457
+ version = "0.30.1"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1460
+ dependencies = [
1461
+ "cc",
1462
+ "pkg-config",
1463
+ "vcpkg",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "linux-raw-sys"
1468
+ version = "0.4.15"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1471
+
1472
+ [[package]]
1473
+ name = "linux-raw-sys"
1474
+ version = "0.11.0"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1477
+
1478
+ [[package]]
1479
+ name = "litemap"
1480
+ version = "0.8.1"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1483
+
1484
+ [[package]]
1485
+ name = "lock_api"
1486
+ version = "0.4.12"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1489
+ dependencies = [
1490
+ "autocfg",
1491
+ "scopeguard",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "log"
1496
+ version = "0.4.29"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1499
+
1500
+ [[package]]
1501
+ name = "lru-slab"
1502
+ version = "0.1.2"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1505
+
1506
+ [[package]]
1507
+ name = "memchr"
1508
+ version = "2.7.6"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1511
+
1512
+ [[package]]
1513
+ name = "memoffset"
1514
+ version = "0.9.1"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1517
+ dependencies = [
1518
+ "autocfg",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "miniz_oxide"
1523
+ version = "0.8.9"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1526
+ dependencies = [
1527
+ "adler2",
1528
+ "simd-adler32",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "mio"
1533
+ version = "1.1.1"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1536
+ dependencies = [
1537
+ "libc",
1538
+ "log",
1539
+ "wasi",
1540
+ "windows-sys 0.61.2",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "notify"
1545
+ version = "7.0.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
1548
+ dependencies = [
1549
+ "bitflags 2.10.0",
1550
+ "filetime",
1551
+ "fsevent-sys",
1552
+ "inotify",
1553
+ "kqueue",
1554
+ "libc",
1555
+ "log",
1556
+ "mio",
1557
+ "notify-types",
1558
+ "walkdir",
1559
+ "windows-sys 0.52.0",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "notify-types"
1564
+ version = "1.0.1"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "585d3cb5e12e01aed9e8a1f70d5c6b5e86fe2a6e48fc8cd0b3e0b8df6f6eb174"
1567
+ dependencies = [
1568
+ "instant",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "num"
1573
+ version = "0.4.3"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1576
+ dependencies = [
1577
+ "num-bigint",
1578
+ "num-complex",
1579
+ "num-integer",
1580
+ "num-iter",
1581
+ "num-rational",
1582
+ "num-traits",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "num-bigint"
1587
+ version = "0.4.6"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1590
+ dependencies = [
1591
+ "num-integer",
1592
+ "num-traits",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "num-complex"
1597
+ version = "0.4.6"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1600
+ dependencies = [
1601
+ "num-traits",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "num-integer"
1606
+ version = "0.1.46"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1609
+ dependencies = [
1610
+ "num-traits",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "num-iter"
1615
+ version = "0.1.45"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1618
+ dependencies = [
1619
+ "autocfg",
1620
+ "num-integer",
1621
+ "num-traits",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "num-rational"
1626
+ version = "0.4.2"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1629
+ dependencies = [
1630
+ "num-bigint",
1631
+ "num-integer",
1632
+ "num-traits",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "num-traits"
1637
+ version = "0.2.19"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1640
+ dependencies = [
1641
+ "autocfg",
1642
+ "libm",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "number_prefix"
1647
+ version = "0.4.0"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1650
+
1651
+ [[package]]
1652
+ name = "once_cell"
1653
+ version = "1.21.3"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1656
+
1657
+ [[package]]
1658
+ name = "once_cell_polyfill"
1659
+ version = "1.70.2"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1662
+
1663
+ [[package]]
1664
+ name = "parking_lot"
1665
+ version = "0.12.3"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1668
+ dependencies = [
1669
+ "lock_api",
1670
+ "parking_lot_core",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "parking_lot_core"
1675
+ version = "0.9.10"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1678
+ dependencies = [
1679
+ "cfg-if",
1680
+ "libc",
1681
+ "redox_syscall 0.5.18",
1682
+ "smallvec",
1683
+ "windows-targets 0.52.6",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "percent-encoding"
1688
+ version = "2.3.2"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1691
+
1692
+ [[package]]
1693
+ name = "pin-project-lite"
1694
+ version = "0.2.16"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1697
+
1698
+ [[package]]
1699
+ name = "pin-utils"
1700
+ version = "0.1.0"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1703
+
1704
+ [[package]]
1705
+ name = "pkg-config"
1706
+ version = "0.3.32"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1709
+
1710
+ [[package]]
1711
+ name = "portable-atomic"
1712
+ version = "1.13.0"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1715
+
1716
+ [[package]]
1717
+ name = "potential_utf"
1718
+ version = "0.1.4"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1721
+ dependencies = [
1722
+ "zerovec",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "ppv-lite86"
1727
+ version = "0.2.21"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1730
+ dependencies = [
1731
+ "zerocopy",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "proc-macro-crate"
1736
+ version = "3.4.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1739
+ dependencies = [
1740
+ "toml_edit 0.23.10+spec-1.0.0",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "proc-macro2"
1745
+ version = "1.0.106"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1748
+ dependencies = [
1749
+ "unicode-ident",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "ptr_meta"
1754
+ version = "0.1.4"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1757
+ dependencies = [
1758
+ "ptr_meta_derive",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "ptr_meta_derive"
1763
+ version = "0.1.4"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1766
+ dependencies = [
1767
+ "proc-macro2",
1768
+ "quote",
1769
+ "syn 1.0.109",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "pyo3"
1774
+ version = "0.23.5"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1777
+ dependencies = [
1778
+ "cfg-if",
1779
+ "indoc",
1780
+ "libc",
1781
+ "memoffset",
1782
+ "once_cell",
1783
+ "portable-atomic",
1784
+ "pyo3-build-config",
1785
+ "pyo3-ffi",
1786
+ "pyo3-macros",
1787
+ "unindent",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "pyo3-build-config"
1792
+ version = "0.23.5"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1795
+ dependencies = [
1796
+ "once_cell",
1797
+ "target-lexicon",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "pyo3-ffi"
1802
+ version = "0.23.5"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1805
+ dependencies = [
1806
+ "libc",
1807
+ "pyo3-build-config",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "pyo3-macros"
1812
+ version = "0.23.5"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1815
+ dependencies = [
1816
+ "proc-macro2",
1817
+ "pyo3-macros-backend",
1818
+ "quote",
1819
+ "syn 2.0.114",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "pyo3-macros-backend"
1824
+ version = "0.23.5"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1827
+ dependencies = [
1828
+ "heck",
1829
+ "proc-macro2",
1830
+ "pyo3-build-config",
1831
+ "quote",
1832
+ "syn 2.0.114",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "quinn"
1837
+ version = "0.11.9"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1840
+ dependencies = [
1841
+ "bytes",
1842
+ "cfg_aliases",
1843
+ "pin-project-lite",
1844
+ "quinn-proto",
1845
+ "quinn-udp",
1846
+ "rustc-hash",
1847
+ "rustls",
1848
+ "socket2",
1849
+ "thiserror",
1850
+ "tokio",
1851
+ "tracing",
1852
+ "web-time",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "quinn-proto"
1857
+ version = "0.11.13"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1860
+ dependencies = [
1861
+ "bytes",
1862
+ "getrandom 0.3.4",
1863
+ "lru-slab",
1864
+ "rand 0.9.2",
1865
+ "ring",
1866
+ "rustc-hash",
1867
+ "rustls",
1868
+ "rustls-pki-types",
1869
+ "slab",
1870
+ "thiserror",
1871
+ "tinyvec",
1872
+ "tracing",
1873
+ "web-time",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "quinn-udp"
1878
+ version = "0.5.14"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1881
+ dependencies = [
1882
+ "cfg_aliases",
1883
+ "libc",
1884
+ "once_cell",
1885
+ "socket2",
1886
+ "tracing",
1887
+ "windows-sys 0.60.2",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "quote"
1892
+ version = "1.0.44"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1895
+ dependencies = [
1896
+ "proc-macro2",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "r-efi"
1901
+ version = "5.3.0"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1904
+
1905
+ [[package]]
1906
+ name = "radium"
1907
+ version = "0.7.0"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1910
+
1911
+ [[package]]
1912
+ name = "rand"
1913
+ version = "0.8.5"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1916
+ dependencies = [
1917
+ "libc",
1918
+ "rand_chacha 0.3.1",
1919
+ "rand_core 0.6.4",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "rand"
1924
+ version = "0.9.2"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1927
+ dependencies = [
1928
+ "rand_chacha 0.9.0",
1929
+ "rand_core 0.9.5",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "rand_chacha"
1934
+ version = "0.3.1"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1937
+ dependencies = [
1938
+ "ppv-lite86",
1939
+ "rand_core 0.6.4",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "rand_chacha"
1944
+ version = "0.9.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1947
+ dependencies = [
1948
+ "ppv-lite86",
1949
+ "rand_core 0.9.5",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "rand_core"
1954
+ version = "0.6.4"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1957
+ dependencies = [
1958
+ "getrandom 0.2.17",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "rand_core"
1963
+ version = "0.9.5"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1966
+ dependencies = [
1967
+ "getrandom 0.3.4",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "rayon"
1972
+ version = "1.11.0"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1975
+ dependencies = [
1976
+ "either",
1977
+ "rayon-core",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "rayon-core"
1982
+ version = "1.13.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1985
+ dependencies = [
1986
+ "crossbeam-deque",
1987
+ "crossbeam-utils",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "redox_syscall"
1992
+ version = "0.5.18"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1995
+ dependencies = [
1996
+ "bitflags 2.10.0",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "redox_syscall"
2001
+ version = "0.7.0"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
2004
+ dependencies = [
2005
+ "bitflags 2.10.0",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "regex"
2010
+ version = "1.12.2"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2013
+ dependencies = [
2014
+ "aho-corasick",
2015
+ "memchr",
2016
+ "regex-automata",
2017
+ "regex-syntax",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "regex-automata"
2022
+ version = "0.4.13"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2025
+ dependencies = [
2026
+ "aho-corasick",
2027
+ "memchr",
2028
+ "regex-syntax",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "regex-syntax"
2033
+ version = "0.8.8"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2036
+
2037
+ [[package]]
2038
+ name = "rend"
2039
+ version = "0.4.2"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
2042
+ dependencies = [
2043
+ "bytecheck",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "reqwest"
2048
+ version = "0.12.28"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2051
+ dependencies = [
2052
+ "base64",
2053
+ "bytes",
2054
+ "futures-channel",
2055
+ "futures-core",
2056
+ "futures-util",
2057
+ "http",
2058
+ "http-body",
2059
+ "http-body-util",
2060
+ "hyper",
2061
+ "hyper-rustls",
2062
+ "hyper-util",
2063
+ "js-sys",
2064
+ "log",
2065
+ "percent-encoding",
2066
+ "pin-project-lite",
2067
+ "quinn",
2068
+ "rustls",
2069
+ "rustls-pki-types",
2070
+ "serde",
2071
+ "serde_json",
2072
+ "serde_urlencoded",
2073
+ "sync_wrapper",
2074
+ "tokio",
2075
+ "tokio-rustls",
2076
+ "tower",
2077
+ "tower-http",
2078
+ "tower-service",
2079
+ "url",
2080
+ "wasm-bindgen",
2081
+ "wasm-bindgen-futures",
2082
+ "web-sys",
2083
+ "webpki-roots",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "ring"
2088
+ version = "0.17.14"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2091
+ dependencies = [
2092
+ "cc",
2093
+ "cfg-if",
2094
+ "getrandom 0.2.17",
2095
+ "libc",
2096
+ "untrusted",
2097
+ "windows-sys 0.52.0",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "rkyv"
2102
+ version = "0.7.46"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
2105
+ dependencies = [
2106
+ "bitvec",
2107
+ "bytecheck",
2108
+ "bytes",
2109
+ "hashbrown 0.12.3",
2110
+ "ptr_meta",
2111
+ "rend",
2112
+ "rkyv_derive",
2113
+ "seahash",
2114
+ "tinyvec",
2115
+ "uuid",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "rkyv_derive"
2120
+ version = "0.7.46"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
2123
+ dependencies = [
2124
+ "proc-macro2",
2125
+ "quote",
2126
+ "syn 1.0.109",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "rusqlite"
2131
+ version = "0.32.1"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
2134
+ dependencies = [
2135
+ "bitflags 2.10.0",
2136
+ "fallible-iterator",
2137
+ "fallible-streaming-iterator",
2138
+ "hashlink 0.9.1",
2139
+ "libsqlite3-sys",
2140
+ "smallvec",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "rust_decimal"
2145
+ version = "1.40.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
2148
+ dependencies = [
2149
+ "arrayvec",
2150
+ "borsh",
2151
+ "bytes",
2152
+ "num-traits",
2153
+ "rand 0.8.5",
2154
+ "rkyv",
2155
+ "serde",
2156
+ "serde_json",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "rustc-hash"
2161
+ version = "2.1.1"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2164
+
2165
+ [[package]]
2166
+ name = "rustix"
2167
+ version = "0.38.44"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2170
+ dependencies = [
2171
+ "bitflags 2.10.0",
2172
+ "errno",
2173
+ "libc",
2174
+ "linux-raw-sys 0.4.15",
2175
+ "windows-sys 0.59.0",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "rustix"
2180
+ version = "1.1.3"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2183
+ dependencies = [
2184
+ "bitflags 2.10.0",
2185
+ "errno",
2186
+ "libc",
2187
+ "linux-raw-sys 0.11.0",
2188
+ "windows-sys 0.61.2",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "rustls"
2193
+ version = "0.23.36"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2196
+ dependencies = [
2197
+ "once_cell",
2198
+ "ring",
2199
+ "rustls-pki-types",
2200
+ "rustls-webpki",
2201
+ "subtle",
2202
+ "zeroize",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "rustls-pki-types"
2207
+ version = "1.14.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2210
+ dependencies = [
2211
+ "web-time",
2212
+ "zeroize",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "rustls-webpki"
2217
+ version = "0.103.9"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2220
+ dependencies = [
2221
+ "ring",
2222
+ "rustls-pki-types",
2223
+ "untrusted",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "rustversion"
2228
+ version = "1.0.22"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2231
+
2232
+ [[package]]
2233
+ name = "ryu"
2234
+ version = "1.0.22"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2237
+
2238
+ [[package]]
2239
+ name = "same-file"
2240
+ version = "1.0.6"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2243
+ dependencies = [
2244
+ "winapi-util",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "scopeguard"
2249
+ version = "1.2.0"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2252
+
2253
+ [[package]]
2254
+ name = "seahash"
2255
+ version = "4.1.0"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2258
+
2259
+ [[package]]
2260
+ name = "serde"
2261
+ version = "1.0.228"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2264
+ dependencies = [
2265
+ "serde_core",
2266
+ "serde_derive",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "serde_core"
2271
+ version = "1.0.228"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2274
+ dependencies = [
2275
+ "serde_derive",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "serde_derive"
2280
+ version = "1.0.228"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2283
+ dependencies = [
2284
+ "proc-macro2",
2285
+ "quote",
2286
+ "syn 2.0.114",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "serde_json"
2291
+ version = "1.0.149"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2294
+ dependencies = [
2295
+ "itoa",
2296
+ "memchr",
2297
+ "serde",
2298
+ "serde_core",
2299
+ "zmij",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "serde_spanned"
2304
+ version = "0.6.9"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2307
+ dependencies = [
2308
+ "serde",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "serde_urlencoded"
2313
+ version = "0.7.1"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2316
+ dependencies = [
2317
+ "form_urlencoded",
2318
+ "itoa",
2319
+ "ryu",
2320
+ "serde",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "sha2"
2325
+ version = "0.10.9"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2328
+ dependencies = [
2329
+ "cfg-if",
2330
+ "cpufeatures",
2331
+ "digest",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "shlex"
2336
+ version = "1.3.0"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2339
+
2340
+ [[package]]
2341
+ name = "simd-adler32"
2342
+ version = "0.3.8"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2345
+
2346
+ [[package]]
2347
+ name = "simdutf8"
2348
+ version = "0.1.5"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2351
+
2352
+ [[package]]
2353
+ name = "slab"
2354
+ version = "0.4.11"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2357
+
2358
+ [[package]]
2359
+ name = "smallvec"
2360
+ version = "1.15.1"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2363
+
2364
+ [[package]]
2365
+ name = "socket2"
2366
+ version = "0.6.2"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2369
+ dependencies = [
2370
+ "libc",
2371
+ "windows-sys 0.60.2",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "stable_deref_trait"
2376
+ version = "1.2.1"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2379
+
2380
+ [[package]]
2381
+ name = "strsim"
2382
+ version = "0.11.1"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2385
+
2386
+ [[package]]
2387
+ name = "strum"
2388
+ version = "0.26.3"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2391
+
2392
+ [[package]]
2393
+ name = "strum"
2394
+ version = "0.27.2"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2397
+ dependencies = [
2398
+ "strum_macros 0.27.2",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "strum_macros"
2403
+ version = "0.26.4"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2406
+ dependencies = [
2407
+ "heck",
2408
+ "proc-macro2",
2409
+ "quote",
2410
+ "rustversion",
2411
+ "syn 2.0.114",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "strum_macros"
2416
+ version = "0.27.2"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2419
+ dependencies = [
2420
+ "heck",
2421
+ "proc-macro2",
2422
+ "quote",
2423
+ "syn 2.0.114",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "subtle"
2428
+ version = "2.6.1"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2431
+
2432
+ [[package]]
2433
+ name = "syn"
2434
+ version = "1.0.109"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2437
+ dependencies = [
2438
+ "proc-macro2",
2439
+ "quote",
2440
+ "unicode-ident",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "syn"
2445
+ version = "2.0.114"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
2448
+ dependencies = [
2449
+ "proc-macro2",
2450
+ "quote",
2451
+ "unicode-ident",
2452
+ ]
2453
+
2454
+ [[package]]
2455
+ name = "sync_wrapper"
2456
+ version = "1.0.2"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2459
+ dependencies = [
2460
+ "futures-core",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "synstructure"
2465
+ version = "0.13.2"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2468
+ dependencies = [
2469
+ "proc-macro2",
2470
+ "quote",
2471
+ "syn 2.0.114",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "tap"
2476
+ version = "1.0.1"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2479
+
2480
+ [[package]]
2481
+ name = "tar"
2482
+ version = "0.4.44"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2485
+ dependencies = [
2486
+ "filetime",
2487
+ "libc",
2488
+ "xattr",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "target-lexicon"
2493
+ version = "0.12.16"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2496
+
2497
+ [[package]]
2498
+ name = "tempfile"
2499
+ version = "3.24.0"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2502
+ dependencies = [
2503
+ "fastrand",
2504
+ "getrandom 0.3.4",
2505
+ "once_cell",
2506
+ "rustix 1.1.3",
2507
+ "windows-sys 0.61.2",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "thiserror"
2512
+ version = "2.0.18"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2515
+ dependencies = [
2516
+ "thiserror-impl",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "thiserror-impl"
2521
+ version = "2.0.18"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2524
+ dependencies = [
2525
+ "proc-macro2",
2526
+ "quote",
2527
+ "syn 2.0.114",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "tiny-keccak"
2532
+ version = "2.0.2"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2535
+ dependencies = [
2536
+ "crunchy",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "tinystr"
2541
+ version = "0.8.2"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2544
+ dependencies = [
2545
+ "displaydoc",
2546
+ "zerovec",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "tinyvec"
2551
+ version = "1.10.0"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2554
+ dependencies = [
2555
+ "tinyvec_macros",
2556
+ ]
2557
+
2558
+ [[package]]
2559
+ name = "tinyvec_macros"
2560
+ version = "0.1.1"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2563
+
2564
+ [[package]]
2565
+ name = "tokio"
2566
+ version = "1.49.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2569
+ dependencies = [
2570
+ "bytes",
2571
+ "libc",
2572
+ "mio",
2573
+ "pin-project-lite",
2574
+ "socket2",
2575
+ "windows-sys 0.61.2",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "tokio-rustls"
2580
+ version = "0.26.4"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2583
+ dependencies = [
2584
+ "rustls",
2585
+ "tokio",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "toml"
2590
+ version = "0.8.23"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2593
+ dependencies = [
2594
+ "serde",
2595
+ "serde_spanned",
2596
+ "toml_datetime 0.6.11",
2597
+ "toml_edit 0.22.27",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "toml_datetime"
2602
+ version = "0.6.11"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2605
+ dependencies = [
2606
+ "serde",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "toml_datetime"
2611
+ version = "0.7.5+spec-1.1.0"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2614
+ dependencies = [
2615
+ "serde_core",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "toml_edit"
2620
+ version = "0.22.27"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2623
+ dependencies = [
2624
+ "indexmap",
2625
+ "serde",
2626
+ "serde_spanned",
2627
+ "toml_datetime 0.6.11",
2628
+ "toml_write",
2629
+ "winnow",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "toml_edit"
2634
+ version = "0.23.10+spec-1.0.0"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
2637
+ dependencies = [
2638
+ "indexmap",
2639
+ "toml_datetime 0.7.5+spec-1.1.0",
2640
+ "toml_parser",
2641
+ "winnow",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "toml_parser"
2646
+ version = "1.0.6+spec-1.1.0"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2649
+ dependencies = [
2650
+ "winnow",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "toml_write"
2655
+ version = "0.1.2"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2658
+
2659
+ [[package]]
2660
+ name = "tower"
2661
+ version = "0.5.3"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2664
+ dependencies = [
2665
+ "futures-core",
2666
+ "futures-util",
2667
+ "pin-project-lite",
2668
+ "sync_wrapper",
2669
+ "tokio",
2670
+ "tower-layer",
2671
+ "tower-service",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "tower-http"
2676
+ version = "0.6.8"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2679
+ dependencies = [
2680
+ "bitflags 2.10.0",
2681
+ "bytes",
2682
+ "futures-util",
2683
+ "http",
2684
+ "http-body",
2685
+ "iri-string",
2686
+ "pin-project-lite",
2687
+ "tower",
2688
+ "tower-layer",
2689
+ "tower-service",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "tower-layer"
2694
+ version = "0.3.3"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2697
+
2698
+ [[package]]
2699
+ name = "tower-service"
2700
+ version = "0.3.3"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2703
+
2704
+ [[package]]
2705
+ name = "tracing"
2706
+ version = "0.1.44"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2709
+ dependencies = [
2710
+ "pin-project-lite",
2711
+ "tracing-core",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "tracing-core"
2716
+ version = "0.1.36"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2719
+ dependencies = [
2720
+ "once_cell",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "try-lock"
2725
+ version = "0.2.5"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2728
+
2729
+ [[package]]
2730
+ name = "typenum"
2731
+ version = "1.19.0"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2734
+
2735
+ [[package]]
2736
+ name = "unicode-ident"
2737
+ version = "1.0.22"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2740
+
2741
+ [[package]]
2742
+ name = "unicode-width"
2743
+ version = "0.2.2"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2746
+
2747
+ [[package]]
2748
+ name = "unindent"
2749
+ version = "0.2.4"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2752
+
2753
+ [[package]]
2754
+ name = "untrusted"
2755
+ version = "0.9.0"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2758
+
2759
+ [[package]]
2760
+ name = "url"
2761
+ version = "2.5.8"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2764
+ dependencies = [
2765
+ "form_urlencoded",
2766
+ "idna",
2767
+ "percent-encoding",
2768
+ "serde",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "utf8_iter"
2773
+ version = "1.0.4"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2776
+
2777
+ [[package]]
2778
+ name = "utf8parse"
2779
+ version = "0.2.2"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2782
+
2783
+ [[package]]
2784
+ name = "uuid"
2785
+ version = "1.20.0"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
2788
+ dependencies = [
2789
+ "js-sys",
2790
+ "wasm-bindgen",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "vcpkg"
2795
+ version = "0.2.15"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2798
+
2799
+ [[package]]
2800
+ name = "version_check"
2801
+ version = "0.9.5"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2804
+
2805
+ [[package]]
2806
+ name = "walkdir"
2807
+ version = "2.5.0"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2810
+ dependencies = [
2811
+ "same-file",
2812
+ "winapi-util",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "want"
2817
+ version = "0.3.1"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2820
+ dependencies = [
2821
+ "try-lock",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "wasi"
2826
+ version = "0.11.1+wasi-snapshot-preview1"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2829
+
2830
+ [[package]]
2831
+ name = "wasip2"
2832
+ version = "1.0.2+wasi-0.2.9"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2835
+ dependencies = [
2836
+ "wit-bindgen",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "wasm-bindgen"
2841
+ version = "0.2.108"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
2844
+ dependencies = [
2845
+ "cfg-if",
2846
+ "once_cell",
2847
+ "rustversion",
2848
+ "wasm-bindgen-macro",
2849
+ "wasm-bindgen-shared",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "wasm-bindgen-futures"
2854
+ version = "0.4.58"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
2857
+ dependencies = [
2858
+ "cfg-if",
2859
+ "futures-util",
2860
+ "js-sys",
2861
+ "once_cell",
2862
+ "wasm-bindgen",
2863
+ "web-sys",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "wasm-bindgen-macro"
2868
+ version = "0.2.108"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
2871
+ dependencies = [
2872
+ "quote",
2873
+ "wasm-bindgen-macro-support",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "wasm-bindgen-macro-support"
2878
+ version = "0.2.108"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
2881
+ dependencies = [
2882
+ "bumpalo",
2883
+ "proc-macro2",
2884
+ "quote",
2885
+ "syn 2.0.114",
2886
+ "wasm-bindgen-shared",
2887
+ ]
2888
+
2889
+ [[package]]
2890
+ name = "wasm-bindgen-shared"
2891
+ version = "0.2.108"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
2894
+ dependencies = [
2895
+ "unicode-ident",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "web-sys"
2900
+ version = "0.3.85"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
2903
+ dependencies = [
2904
+ "js-sys",
2905
+ "wasm-bindgen",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "web-time"
2910
+ version = "1.1.0"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2913
+ dependencies = [
2914
+ "js-sys",
2915
+ "wasm-bindgen",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "webpki-roots"
2920
+ version = "1.0.5"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
2923
+ dependencies = [
2924
+ "rustls-pki-types",
2925
+ ]
2926
+
2927
+ [[package]]
2928
+ name = "winapi"
2929
+ version = "0.3.9"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2932
+ dependencies = [
2933
+ "winapi-i686-pc-windows-gnu",
2934
+ "winapi-x86_64-pc-windows-gnu",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "winapi-i686-pc-windows-gnu"
2939
+ version = "0.4.0"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2942
+
2943
+ [[package]]
2944
+ name = "winapi-util"
2945
+ version = "0.1.11"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2948
+ dependencies = [
2949
+ "windows-sys 0.61.2",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "winapi-x86_64-pc-windows-gnu"
2954
+ version = "0.4.0"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2957
+
2958
+ [[package]]
2959
+ name = "windows-core"
2960
+ version = "0.62.2"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2963
+ dependencies = [
2964
+ "windows-implement",
2965
+ "windows-interface",
2966
+ "windows-link",
2967
+ "windows-result",
2968
+ "windows-strings",
2969
+ ]
2970
+
2971
+ [[package]]
2972
+ name = "windows-implement"
2973
+ version = "0.60.2"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2976
+ dependencies = [
2977
+ "proc-macro2",
2978
+ "quote",
2979
+ "syn 2.0.114",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "windows-interface"
2984
+ version = "0.59.3"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2987
+ dependencies = [
2988
+ "proc-macro2",
2989
+ "quote",
2990
+ "syn 2.0.114",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "windows-link"
2995
+ version = "0.2.1"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2998
+
2999
+ [[package]]
3000
+ name = "windows-result"
3001
+ version = "0.4.1"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3004
+ dependencies = [
3005
+ "windows-link",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "windows-strings"
3010
+ version = "0.5.1"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3013
+ dependencies = [
3014
+ "windows-link",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "windows-sys"
3019
+ version = "0.52.0"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3022
+ dependencies = [
3023
+ "windows-targets 0.52.6",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "windows-sys"
3028
+ version = "0.59.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3031
+ dependencies = [
3032
+ "windows-targets 0.52.6",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "windows-sys"
3037
+ version = "0.60.2"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3040
+ dependencies = [
3041
+ "windows-targets 0.53.5",
3042
+ ]
3043
+
3044
+ [[package]]
3045
+ name = "windows-sys"
3046
+ version = "0.61.2"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3049
+ dependencies = [
3050
+ "windows-link",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "windows-targets"
3055
+ version = "0.52.6"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3058
+ dependencies = [
3059
+ "windows_aarch64_gnullvm 0.52.6",
3060
+ "windows_aarch64_msvc 0.52.6",
3061
+ "windows_i686_gnu 0.52.6",
3062
+ "windows_i686_gnullvm 0.52.6",
3063
+ "windows_i686_msvc 0.52.6",
3064
+ "windows_x86_64_gnu 0.52.6",
3065
+ "windows_x86_64_gnullvm 0.52.6",
3066
+ "windows_x86_64_msvc 0.52.6",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "windows-targets"
3071
+ version = "0.53.5"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3074
+ dependencies = [
3075
+ "windows-link",
3076
+ "windows_aarch64_gnullvm 0.53.1",
3077
+ "windows_aarch64_msvc 0.53.1",
3078
+ "windows_i686_gnu 0.53.1",
3079
+ "windows_i686_gnullvm 0.53.1",
3080
+ "windows_i686_msvc 0.53.1",
3081
+ "windows_x86_64_gnu 0.53.1",
3082
+ "windows_x86_64_gnullvm 0.53.1",
3083
+ "windows_x86_64_msvc 0.53.1",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "windows_aarch64_gnullvm"
3088
+ version = "0.52.6"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3091
+
3092
+ [[package]]
3093
+ name = "windows_aarch64_gnullvm"
3094
+ version = "0.53.1"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3097
+
3098
+ [[package]]
3099
+ name = "windows_aarch64_msvc"
3100
+ version = "0.52.6"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3103
+
3104
+ [[package]]
3105
+ name = "windows_aarch64_msvc"
3106
+ version = "0.53.1"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3109
+
3110
+ [[package]]
3111
+ name = "windows_i686_gnu"
3112
+ version = "0.52.6"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3115
+
3116
+ [[package]]
3117
+ name = "windows_i686_gnu"
3118
+ version = "0.53.1"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3121
+
3122
+ [[package]]
3123
+ name = "windows_i686_gnullvm"
3124
+ version = "0.52.6"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3127
+
3128
+ [[package]]
3129
+ name = "windows_i686_gnullvm"
3130
+ version = "0.53.1"
3131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3132
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3133
+
3134
+ [[package]]
3135
+ name = "windows_i686_msvc"
3136
+ version = "0.52.6"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3139
+
3140
+ [[package]]
3141
+ name = "windows_i686_msvc"
3142
+ version = "0.53.1"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3145
+
3146
+ [[package]]
3147
+ name = "windows_x86_64_gnu"
3148
+ version = "0.52.6"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3151
+
3152
+ [[package]]
3153
+ name = "windows_x86_64_gnu"
3154
+ version = "0.53.1"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3157
+
3158
+ [[package]]
3159
+ name = "windows_x86_64_gnullvm"
3160
+ version = "0.52.6"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3163
+
3164
+ [[package]]
3165
+ name = "windows_x86_64_gnullvm"
3166
+ version = "0.53.1"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3169
+
3170
+ [[package]]
3171
+ name = "windows_x86_64_msvc"
3172
+ version = "0.52.6"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3175
+
3176
+ [[package]]
3177
+ name = "windows_x86_64_msvc"
3178
+ version = "0.53.1"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3181
+
3182
+ [[package]]
3183
+ name = "winnow"
3184
+ version = "0.7.14"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3187
+ dependencies = [
3188
+ "memchr",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "wit-bindgen"
3193
+ version = "0.51.0"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3196
+
3197
+ [[package]]
3198
+ name = "writeable"
3199
+ version = "0.6.2"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3202
+
3203
+ [[package]]
3204
+ name = "wyz"
3205
+ version = "0.5.1"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3208
+ dependencies = [
3209
+ "tap",
3210
+ ]
3211
+
3212
+ [[package]]
3213
+ name = "xattr"
3214
+ version = "1.6.1"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3217
+ dependencies = [
3218
+ "libc",
3219
+ "rustix 1.1.3",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "yoke"
3224
+ version = "0.8.1"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3227
+ dependencies = [
3228
+ "stable_deref_trait",
3229
+ "yoke-derive",
3230
+ "zerofrom",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "yoke-derive"
3235
+ version = "0.8.1"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3238
+ dependencies = [
3239
+ "proc-macro2",
3240
+ "quote",
3241
+ "syn 2.0.114",
3242
+ "synstructure",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "zerocopy"
3247
+ version = "0.8.34"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d"
3250
+ dependencies = [
3251
+ "zerocopy-derive",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "zerocopy-derive"
3256
+ version = "0.8.34"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d"
3259
+ dependencies = [
3260
+ "proc-macro2",
3261
+ "quote",
3262
+ "syn 2.0.114",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "zerofrom"
3267
+ version = "0.1.6"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3270
+ dependencies = [
3271
+ "zerofrom-derive",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "zerofrom-derive"
3276
+ version = "0.1.6"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3279
+ dependencies = [
3280
+ "proc-macro2",
3281
+ "quote",
3282
+ "syn 2.0.114",
3283
+ "synstructure",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "zeroize"
3288
+ version = "1.8.2"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3291
+
3292
+ [[package]]
3293
+ name = "zerotrie"
3294
+ version = "0.2.3"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3297
+ dependencies = [
3298
+ "displaydoc",
3299
+ "yoke",
3300
+ "zerofrom",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "zerovec"
3305
+ version = "0.11.5"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3308
+ dependencies = [
3309
+ "yoke",
3310
+ "zerofrom",
3311
+ "zerovec-derive",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "zerovec-derive"
3316
+ version = "0.11.2"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3319
+ dependencies = [
3320
+ "proc-macro2",
3321
+ "quote",
3322
+ "syn 2.0.114",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "zip"
3327
+ version = "6.0.0"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
3330
+ dependencies = [
3331
+ "arbitrary",
3332
+ "crc32fast",
3333
+ "flate2",
3334
+ "indexmap",
3335
+ "memchr",
3336
+ "zopfli",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "zlib-rs"
3341
+ version = "0.5.5"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
3344
+
3345
+ [[package]]
3346
+ name = "zmij"
3347
+ version = "1.0.17"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"
3350
+
3351
+ [[package]]
3352
+ name = "zopfli"
3353
+ version = "0.8.3"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3356
+ dependencies = [
3357
+ "bumpalo",
3358
+ "crc32fast",
3359
+ "log",
3360
+ "simd-adler32",
3361
+ ]