pgen-polars 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. pgen_polars-0.1.0/Cargo.lock +4020 -0
  2. pgen_polars-0.1.0/Cargo.toml +22 -0
  3. pgen_polars-0.1.0/LICENSE +21 -0
  4. pgen_polars-0.1.0/PKG-INFO +329 -0
  5. pgen_polars-0.1.0/README.md +294 -0
  6. pgen_polars-0.1.0/crates/pgen-core/Cargo.toml +18 -0
  7. pgen_polars-0.1.0/crates/pgen-core/examples/stage_benchmark.rs +134 -0
  8. pgen_polars-0.1.0/crates/pgen-core/src/bgen.rs +2135 -0
  9. pgen_polars-0.1.0/crates/pgen-core/src/error.rs +129 -0
  10. pgen_polars-0.1.0/crates/pgen-core/src/lib.rs +69 -0
  11. pgen_polars-0.1.0/crates/pgen-core/src/metadata/dataset.rs +241 -0
  12. pgen_polars-0.1.0/crates/pgen-core/src/metadata/mod.rs +438 -0
  13. pgen_polars-0.1.0/crates/pgen-core/src/metadata/sample.rs +269 -0
  14. pgen_polars-0.1.0/crates/pgen-core/src/metadata/sample_oxford.rs +287 -0
  15. pgen_polars-0.1.0/crates/pgen-core/src/metadata/selective.rs +650 -0
  16. pgen_polars-0.1.0/crates/pgen-core/src/metadata/variant.rs +434 -0
  17. pgen_polars-0.1.0/crates/pgen-core/src/output.rs +482 -0
  18. pgen_polars-0.1.0/crates/pgen-core/src/pgen/bed.rs +260 -0
  19. pgen_polars-0.1.0/crates/pgen-core/src/pgen/difflist.rs +413 -0
  20. pgen_polars-0.1.0/crates/pgen-core/src/pgen/header.rs +859 -0
  21. pgen_polars-0.1.0/crates/pgen-core/src/pgen/mod.rs +1684 -0
  22. pgen_polars-0.1.0/crates/pgen-core/src/pgen/record.rs +747 -0
  23. pgen_polars-0.1.0/crates/pgen-core/src/read.rs +319 -0
  24. pgen_polars-0.1.0/crates/pgen-core/src/scan.rs +1561 -0
  25. pgen_polars-0.1.0/crates/pgen-core/src/selection.rs +225 -0
  26. pgen_polars-0.1.0/crates/pgen-core/src/stats.rs +8 -0
  27. pgen_polars-0.1.0/crates/pgen-core/tests/metadata_toy.rs +64 -0
  28. pgen_polars-0.1.0/crates/pgen-core/tests/pgen_toy.rs +527 -0
  29. pgen_polars-0.1.0/crates/pgen-core/tests/smoke.rs +14 -0
  30. pgen_polars-0.1.0/crates/pgen-python/Cargo.toml +21 -0
  31. pgen_polars-0.1.0/crates/pgen-python/src/arrow_boundary.rs +126 -0
  32. pgen_polars-0.1.0/crates/pgen-python/src/lib.rs +656 -0
  33. pgen_polars-0.1.0/pyproject.toml +53 -0
  34. pgen_polars-0.1.0/python/pgen_polars/__init__.py +868 -0
  35. pgen_polars-0.1.0/python/pgen_polars/_pgen_polars.pyi +105 -0
  36. pgen_polars-0.1.0/python/pgen_polars/py.typed +0 -0
@@ -0,0 +1,4020 @@
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.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "allocator-api2"
36
+ version = "0.2.21"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
39
+
40
+ [[package]]
41
+ name = "android_system_properties"
42
+ version = "0.1.5"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
45
+ dependencies = [
46
+ "libc",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstream"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
54
+ dependencies = [
55
+ "anstyle",
56
+ "anstyle-parse",
57
+ "anstyle-query",
58
+ "anstyle-wincon",
59
+ "colorchoice",
60
+ "is_terminal_polyfill",
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle"
66
+ version = "1.0.14"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
69
+
70
+ [[package]]
71
+ name = "anstyle-parse"
72
+ version = "1.0.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
75
+ dependencies = [
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-query"
81
+ version = "1.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
84
+ dependencies = [
85
+ "windows-sys 0.61.2",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle-wincon"
90
+ version = "3.0.11"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "once_cell_polyfill",
96
+ "windows-sys 0.61.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "ar_archive_writer"
101
+ version = "0.5.1"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
104
+ dependencies = [
105
+ "object",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "argminmax"
110
+ version = "0.6.3"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
113
+ dependencies = [
114
+ "half",
115
+ "num-traits",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "array-init-cursor"
120
+ version = "0.2.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
123
+
124
+ [[package]]
125
+ name = "arrayref"
126
+ version = "0.3.9"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
129
+
130
+ [[package]]
131
+ name = "arrayvec"
132
+ version = "0.7.8"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
135
+
136
+ [[package]]
137
+ name = "arrow-array"
138
+ version = "58.3.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
141
+ dependencies = [
142
+ "ahash",
143
+ "arrow-buffer",
144
+ "arrow-data",
145
+ "arrow-schema",
146
+ "chrono",
147
+ "half",
148
+ "hashbrown 0.17.1",
149
+ "num-complex",
150
+ "num-integer",
151
+ "num-traits",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "arrow-buffer"
156
+ version = "58.3.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
159
+ dependencies = [
160
+ "bytes",
161
+ "half",
162
+ "num-bigint",
163
+ "num-traits",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "arrow-data"
168
+ version = "58.3.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
171
+ dependencies = [
172
+ "arrow-buffer",
173
+ "arrow-schema",
174
+ "half",
175
+ "num-integer",
176
+ "num-traits",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "arrow-schema"
181
+ version = "58.3.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
184
+ dependencies = [
185
+ "bitflags",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "async-channel"
190
+ version = "2.5.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
193
+ dependencies = [
194
+ "concurrent-queue",
195
+ "event-listener-strategy",
196
+ "futures-core",
197
+ "pin-project-lite",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "async-stream"
202
+ version = "0.3.6"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
205
+ dependencies = [
206
+ "async-stream-impl",
207
+ "futures-core",
208
+ "pin-project-lite",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "async-stream-impl"
213
+ version = "0.3.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
216
+ dependencies = [
217
+ "proc-macro2",
218
+ "quote",
219
+ "syn",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "async-trait"
224
+ version = "0.1.89"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
227
+ dependencies = [
228
+ "proc-macro2",
229
+ "quote",
230
+ "syn",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "atoi_simd"
235
+ version = "0.17.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
238
+ dependencies = [
239
+ "debug_unsafe",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "atomic-waker"
244
+ version = "1.1.2"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
247
+
248
+ [[package]]
249
+ name = "autocfg"
250
+ version = "1.5.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
253
+
254
+ [[package]]
255
+ name = "base64"
256
+ version = "0.22.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
259
+
260
+ [[package]]
261
+ name = "bincode"
262
+ version = "2.0.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
265
+ dependencies = [
266
+ "bincode_derive",
267
+ "serde",
268
+ "unty",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "bincode_derive"
273
+ version = "2.0.1"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
276
+ dependencies = [
277
+ "virtue",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "bitflags"
282
+ version = "2.13.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
285
+ dependencies = [
286
+ "serde_core",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "blake3"
291
+ version = "1.8.5"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
294
+ dependencies = [
295
+ "arrayref",
296
+ "arrayvec",
297
+ "cc",
298
+ "cfg-if",
299
+ "constant_time_eq",
300
+ "cpufeatures 0.3.0",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "block-buffer"
305
+ version = "0.10.4"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
308
+ dependencies = [
309
+ "generic-array",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "boxcar"
314
+ version = "0.2.14"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
317
+
318
+ [[package]]
319
+ name = "bumpalo"
320
+ version = "3.20.3"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
323
+
324
+ [[package]]
325
+ name = "bytemuck"
326
+ version = "1.25.1"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
329
+ dependencies = [
330
+ "bytemuck_derive",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "bytemuck_derive"
335
+ version = "1.11.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
338
+ dependencies = [
339
+ "proc-macro2",
340
+ "quote",
341
+ "syn",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "bytes"
346
+ version = "1.12.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
349
+ dependencies = [
350
+ "serde",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "castaway"
355
+ version = "0.2.4"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
358
+ dependencies = [
359
+ "rustversion",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "cc"
364
+ version = "1.2.66"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
367
+ dependencies = [
368
+ "find-msvc-tools",
369
+ "jobserver",
370
+ "libc",
371
+ "shlex",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "cfg-if"
376
+ version = "1.0.4"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
379
+
380
+ [[package]]
381
+ name = "cfg_aliases"
382
+ version = "0.2.1"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
385
+
386
+ [[package]]
387
+ name = "chacha20"
388
+ version = "0.10.1"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
391
+ dependencies = [
392
+ "cfg-if",
393
+ "cpufeatures 0.3.0",
394
+ "rand_core 0.10.1",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "chrono"
399
+ version = "0.4.45"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
402
+ dependencies = [
403
+ "iana-time-zone",
404
+ "num-traits",
405
+ "serde",
406
+ "windows-link 0.2.1",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "chrono-tz"
411
+ version = "0.10.4"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
414
+ dependencies = [
415
+ "chrono",
416
+ "phf",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "clap"
421
+ version = "4.6.1"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
424
+ dependencies = [
425
+ "clap_builder",
426
+ "clap_derive",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "clap_builder"
431
+ version = "4.6.0"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
434
+ dependencies = [
435
+ "anstream",
436
+ "anstyle",
437
+ "clap_lex",
438
+ "strsim",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "clap_derive"
443
+ version = "4.6.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
446
+ dependencies = [
447
+ "heck",
448
+ "proc-macro2",
449
+ "quote",
450
+ "syn",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "clap_lex"
455
+ version = "1.1.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
458
+
459
+ [[package]]
460
+ name = "colorchoice"
461
+ version = "1.0.5"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
464
+
465
+ [[package]]
466
+ name = "compact_str"
467
+ version = "0.9.1"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
470
+ dependencies = [
471
+ "castaway",
472
+ "cfg-if",
473
+ "itoa",
474
+ "rustversion",
475
+ "ryu",
476
+ "serde",
477
+ "static_assertions",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "concurrent-queue"
482
+ version = "2.5.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
485
+ dependencies = [
486
+ "crossbeam-utils",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "const-random"
491
+ version = "0.1.18"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
494
+ dependencies = [
495
+ "const-random-macro",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "const-random-macro"
500
+ version = "0.1.16"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
503
+ dependencies = [
504
+ "getrandom 0.2.17",
505
+ "once_cell",
506
+ "tiny-keccak",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "constant_time_eq"
511
+ version = "0.4.2"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
514
+
515
+ [[package]]
516
+ name = "core-foundation"
517
+ version = "0.10.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
520
+ dependencies = [
521
+ "core-foundation-sys",
522
+ "libc",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "core-foundation-sys"
527
+ version = "0.8.7"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
530
+
531
+ [[package]]
532
+ name = "cpufeatures"
533
+ version = "0.2.17"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
536
+ dependencies = [
537
+ "libc",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "cpufeatures"
542
+ version = "0.3.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
545
+ dependencies = [
546
+ "libc",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "crc32fast"
551
+ version = "1.5.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
554
+ dependencies = [
555
+ "cfg-if",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "crossbeam-channel"
560
+ version = "0.5.16"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
563
+ dependencies = [
564
+ "crossbeam-utils",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "crossbeam-deque"
569
+ version = "0.8.7"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
572
+ dependencies = [
573
+ "crossbeam-epoch",
574
+ "crossbeam-utils",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "crossbeam-epoch"
579
+ version = "0.9.20"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
582
+ dependencies = [
583
+ "crossbeam-utils",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "crossbeam-queue"
588
+ version = "0.3.13"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
591
+ dependencies = [
592
+ "crossbeam-utils",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "crossbeam-utils"
597
+ version = "0.8.22"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
600
+
601
+ [[package]]
602
+ name = "crunchy"
603
+ version = "0.2.4"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
606
+
607
+ [[package]]
608
+ name = "crypto-common"
609
+ version = "0.1.7"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
612
+ dependencies = [
613
+ "generic-array",
614
+ "typenum",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "debug_unsafe"
619
+ version = "0.1.4"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
622
+
623
+ [[package]]
624
+ name = "digest"
625
+ version = "0.10.7"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
628
+ dependencies = [
629
+ "block-buffer",
630
+ "crypto-common",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "displaydoc"
635
+ version = "0.2.6"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
638
+ dependencies = [
639
+ "proc-macro2",
640
+ "quote",
641
+ "syn",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "dyn-clone"
646
+ version = "1.0.20"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
649
+
650
+ [[package]]
651
+ name = "either"
652
+ version = "1.16.0"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
655
+
656
+ [[package]]
657
+ name = "equivalent"
658
+ version = "1.0.2"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
661
+
662
+ [[package]]
663
+ name = "errno"
664
+ version = "0.3.14"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
667
+ dependencies = [
668
+ "libc",
669
+ "windows-sys 0.61.2",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "ethnum"
674
+ version = "1.5.3"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
677
+
678
+ [[package]]
679
+ name = "event-listener"
680
+ version = "5.4.1"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
683
+ dependencies = [
684
+ "concurrent-queue",
685
+ "parking",
686
+ "pin-project-lite",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "event-listener-strategy"
691
+ version = "0.5.4"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
694
+ dependencies = [
695
+ "event-listener",
696
+ "pin-project-lite",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "fallible-iterator"
701
+ version = "0.3.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
704
+
705
+ [[package]]
706
+ name = "fallible-streaming-iterator"
707
+ version = "0.1.9"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
710
+
711
+ [[package]]
712
+ name = "fast-float2"
713
+ version = "0.2.3"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
716
+
717
+ [[package]]
718
+ name = "fastrand"
719
+ version = "2.4.1"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
722
+
723
+ [[package]]
724
+ name = "find-msvc-tools"
725
+ version = "0.1.9"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
728
+
729
+ [[package]]
730
+ name = "flate2"
731
+ version = "1.1.9"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
734
+ dependencies = [
735
+ "crc32fast",
736
+ "miniz_oxide",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "fnv"
741
+ version = "1.0.7"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
744
+
745
+ [[package]]
746
+ name = "foldhash"
747
+ version = "0.1.5"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
750
+
751
+ [[package]]
752
+ name = "foldhash"
753
+ version = "0.2.0"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
756
+
757
+ [[package]]
758
+ name = "form_urlencoded"
759
+ version = "1.2.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
762
+ dependencies = [
763
+ "percent-encoding",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "fs4"
768
+ version = "0.13.1"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
771
+ dependencies = [
772
+ "rustix",
773
+ "windows-sys 0.59.0",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "futures"
778
+ version = "0.3.32"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
781
+ dependencies = [
782
+ "futures-channel",
783
+ "futures-core",
784
+ "futures-executor",
785
+ "futures-io",
786
+ "futures-sink",
787
+ "futures-task",
788
+ "futures-util",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "futures-channel"
793
+ version = "0.3.32"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
796
+ dependencies = [
797
+ "futures-core",
798
+ "futures-sink",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "futures-core"
803
+ version = "0.3.32"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
806
+
807
+ [[package]]
808
+ name = "futures-executor"
809
+ version = "0.3.32"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
812
+ dependencies = [
813
+ "futures-core",
814
+ "futures-task",
815
+ "futures-util",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "futures-io"
820
+ version = "0.3.32"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
823
+
824
+ [[package]]
825
+ name = "futures-macro"
826
+ version = "0.3.32"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
829
+ dependencies = [
830
+ "proc-macro2",
831
+ "quote",
832
+ "syn",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "futures-sink"
837
+ version = "0.3.32"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
840
+
841
+ [[package]]
842
+ name = "futures-task"
843
+ version = "0.3.32"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
846
+
847
+ [[package]]
848
+ name = "futures-util"
849
+ version = "0.3.32"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
852
+ dependencies = [
853
+ "futures-channel",
854
+ "futures-core",
855
+ "futures-io",
856
+ "futures-macro",
857
+ "futures-sink",
858
+ "futures-task",
859
+ "memchr",
860
+ "pin-project-lite",
861
+ "slab",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "generic-array"
866
+ version = "0.14.7"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
869
+ dependencies = [
870
+ "typenum",
871
+ "version_check",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "getrandom"
876
+ version = "0.2.17"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
879
+ dependencies = [
880
+ "cfg-if",
881
+ "js-sys",
882
+ "libc",
883
+ "wasi",
884
+ "wasm-bindgen",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "getrandom"
889
+ version = "0.3.4"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
892
+ dependencies = [
893
+ "cfg-if",
894
+ "js-sys",
895
+ "libc",
896
+ "r-efi 5.3.0",
897
+ "wasip2",
898
+ "wasm-bindgen",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "getrandom"
903
+ version = "0.4.3"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
906
+ dependencies = [
907
+ "cfg-if",
908
+ "js-sys",
909
+ "libc",
910
+ "r-efi 6.0.0",
911
+ "rand_core 0.10.1",
912
+ "wasm-bindgen",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "glob"
917
+ version = "0.3.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
920
+
921
+ [[package]]
922
+ name = "h2"
923
+ version = "0.4.15"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
926
+ dependencies = [
927
+ "atomic-waker",
928
+ "bytes",
929
+ "fnv",
930
+ "futures-core",
931
+ "futures-sink",
932
+ "http",
933
+ "indexmap",
934
+ "slab",
935
+ "tokio",
936
+ "tokio-util",
937
+ "tracing",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "half"
942
+ version = "2.7.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
945
+ dependencies = [
946
+ "bytemuck",
947
+ "cfg-if",
948
+ "crunchy",
949
+ "num-traits",
950
+ "serde",
951
+ "zerocopy",
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",
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
+ "allocator-api2",
970
+ "equivalent",
971
+ "foldhash 0.1.5",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "hashbrown"
976
+ version = "0.16.1"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
979
+ dependencies = [
980
+ "allocator-api2",
981
+ "equivalent",
982
+ "foldhash 0.2.0",
983
+ "rayon",
984
+ "serde",
985
+ "serde_core",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "hashbrown"
990
+ version = "0.17.1"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
993
+
994
+ [[package]]
995
+ name = "hashlink"
996
+ version = "0.9.1"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
999
+ dependencies = [
1000
+ "hashbrown 0.14.5",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "heck"
1005
+ version = "0.5.0"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1008
+
1009
+ [[package]]
1010
+ name = "hex"
1011
+ version = "0.4.3"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1014
+
1015
+ [[package]]
1016
+ name = "home"
1017
+ version = "0.5.11"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1020
+ dependencies = [
1021
+ "windows-sys 0.59.0",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "http"
1026
+ version = "1.4.2"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1029
+ dependencies = [
1030
+ "bytes",
1031
+ "itoa",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "http-body"
1036
+ version = "1.1.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1039
+ dependencies = [
1040
+ "bytes",
1041
+ "http",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "http-body-util"
1046
+ version = "0.1.4"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
1049
+ dependencies = [
1050
+ "bytes",
1051
+ "futures-core",
1052
+ "http",
1053
+ "http-body",
1054
+ "pin-project-lite",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "httparse"
1059
+ version = "1.10.1"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1062
+
1063
+ [[package]]
1064
+ name = "humantime"
1065
+ version = "2.4.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
1068
+
1069
+ [[package]]
1070
+ name = "hyper"
1071
+ version = "1.10.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1074
+ dependencies = [
1075
+ "atomic-waker",
1076
+ "bytes",
1077
+ "futures-channel",
1078
+ "futures-core",
1079
+ "h2",
1080
+ "http",
1081
+ "http-body",
1082
+ "httparse",
1083
+ "itoa",
1084
+ "pin-project-lite",
1085
+ "smallvec",
1086
+ "tokio",
1087
+ "want",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "hyper-rustls"
1092
+ version = "0.27.9"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1095
+ dependencies = [
1096
+ "http",
1097
+ "hyper",
1098
+ "hyper-util",
1099
+ "rustls",
1100
+ "rustls-native-certs",
1101
+ "tokio",
1102
+ "tokio-rustls",
1103
+ "tower-service",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "hyper-util"
1108
+ version = "0.1.20"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1111
+ dependencies = [
1112
+ "base64",
1113
+ "bytes",
1114
+ "futures-channel",
1115
+ "futures-util",
1116
+ "http",
1117
+ "http-body",
1118
+ "hyper",
1119
+ "ipnet",
1120
+ "libc",
1121
+ "percent-encoding",
1122
+ "pin-project-lite",
1123
+ "socket2",
1124
+ "tokio",
1125
+ "tower-service",
1126
+ "tracing",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "iana-time-zone"
1131
+ version = "0.1.65"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1134
+ dependencies = [
1135
+ "android_system_properties",
1136
+ "core-foundation-sys",
1137
+ "iana-time-zone-haiku",
1138
+ "js-sys",
1139
+ "log",
1140
+ "wasm-bindgen",
1141
+ "windows-core 0.62.2",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "iana-time-zone-haiku"
1146
+ version = "0.1.2"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1149
+ dependencies = [
1150
+ "cc",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "icu_collections"
1155
+ version = "2.1.1"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1158
+ dependencies = [
1159
+ "displaydoc",
1160
+ "potential_utf",
1161
+ "yoke",
1162
+ "zerofrom",
1163
+ "zerovec",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "icu_locale_core"
1168
+ version = "2.1.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1171
+ dependencies = [
1172
+ "displaydoc",
1173
+ "litemap",
1174
+ "tinystr",
1175
+ "writeable",
1176
+ "zerovec",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "icu_normalizer"
1181
+ version = "2.1.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1184
+ dependencies = [
1185
+ "icu_collections",
1186
+ "icu_normalizer_data",
1187
+ "icu_properties",
1188
+ "icu_provider",
1189
+ "smallvec",
1190
+ "zerovec",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "icu_normalizer_data"
1195
+ version = "2.1.1"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1198
+
1199
+ [[package]]
1200
+ name = "icu_properties"
1201
+ version = "2.1.2"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1204
+ dependencies = [
1205
+ "icu_collections",
1206
+ "icu_locale_core",
1207
+ "icu_properties_data",
1208
+ "icu_provider",
1209
+ "zerotrie",
1210
+ "zerovec",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "icu_properties_data"
1215
+ version = "2.1.2"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1218
+
1219
+ [[package]]
1220
+ name = "icu_provider"
1221
+ version = "2.1.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1224
+ dependencies = [
1225
+ "displaydoc",
1226
+ "icu_locale_core",
1227
+ "writeable",
1228
+ "yoke",
1229
+ "zerofrom",
1230
+ "zerotrie",
1231
+ "zerovec",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "idna"
1236
+ version = "1.1.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1239
+ dependencies = [
1240
+ "idna_adapter",
1241
+ "smallvec",
1242
+ "utf8_iter",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "idna_adapter"
1247
+ version = "1.2.1"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1250
+ dependencies = [
1251
+ "icu_normalizer",
1252
+ "icu_properties",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "indexmap"
1257
+ version = "2.14.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1260
+ dependencies = [
1261
+ "equivalent",
1262
+ "hashbrown 0.17.1",
1263
+ "serde",
1264
+ "serde_core",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "indoc"
1269
+ version = "2.0.7"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1272
+ dependencies = [
1273
+ "rustversion",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "ipnet"
1278
+ version = "2.12.0"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1281
+
1282
+ [[package]]
1283
+ name = "is_terminal_polyfill"
1284
+ version = "1.70.2"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1287
+
1288
+ [[package]]
1289
+ name = "itertools"
1290
+ version = "0.14.0"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1293
+ dependencies = [
1294
+ "either",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "itoa"
1299
+ version = "1.0.18"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1302
+
1303
+ [[package]]
1304
+ name = "jobserver"
1305
+ version = "0.1.35"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1308
+ dependencies = [
1309
+ "getrandom 0.4.3",
1310
+ "libc",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "js-sys"
1315
+ version = "0.3.103"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1318
+ dependencies = [
1319
+ "cfg-if",
1320
+ "futures-util",
1321
+ "wasm-bindgen",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "libc"
1326
+ version = "0.2.186"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1329
+
1330
+ [[package]]
1331
+ name = "libm"
1332
+ version = "0.2.16"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1335
+
1336
+ [[package]]
1337
+ name = "libsqlite3-sys"
1338
+ version = "0.30.1"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1341
+ dependencies = [
1342
+ "cc",
1343
+ "pkg-config",
1344
+ "vcpkg",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "linux-raw-sys"
1349
+ version = "0.12.1"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1352
+
1353
+ [[package]]
1354
+ name = "litemap"
1355
+ version = "0.8.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1358
+
1359
+ [[package]]
1360
+ name = "lock_api"
1361
+ version = "0.4.14"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1364
+ dependencies = [
1365
+ "scopeguard",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "log"
1370
+ version = "0.4.33"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1373
+
1374
+ [[package]]
1375
+ name = "lru-slab"
1376
+ version = "0.1.2"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1379
+
1380
+ [[package]]
1381
+ name = "lz4"
1382
+ version = "1.28.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1385
+ dependencies = [
1386
+ "lz4-sys",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "lz4-sys"
1391
+ version = "1.11.1+lz4-1.10.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1394
+ dependencies = [
1395
+ "cc",
1396
+ "libc",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "memchr"
1401
+ version = "2.8.3"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1404
+
1405
+ [[package]]
1406
+ name = "memmap2"
1407
+ version = "0.9.11"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1410
+ dependencies = [
1411
+ "libc",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "memoffset"
1416
+ version = "0.9.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1419
+ dependencies = [
1420
+ "autocfg",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "miniz_oxide"
1425
+ version = "0.8.9"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1428
+ dependencies = [
1429
+ "adler2",
1430
+ "simd-adler32",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "mio"
1435
+ version = "1.2.2"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1438
+ dependencies = [
1439
+ "libc",
1440
+ "wasi",
1441
+ "windows-sys 0.61.2",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "now"
1446
+ version = "0.1.3"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1449
+ dependencies = [
1450
+ "chrono",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "ntapi"
1455
+ version = "0.4.3"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
1458
+ dependencies = [
1459
+ "winapi",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "num-bigint"
1464
+ version = "0.4.8"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1467
+ dependencies = [
1468
+ "num-integer",
1469
+ "num-traits",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "num-complex"
1474
+ version = "0.4.6"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1477
+ dependencies = [
1478
+ "num-traits",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "num-derive"
1483
+ version = "0.4.2"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1486
+ dependencies = [
1487
+ "proc-macro2",
1488
+ "quote",
1489
+ "syn",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "num-integer"
1494
+ version = "0.1.46"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1497
+ dependencies = [
1498
+ "num-traits",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "num-traits"
1503
+ version = "0.2.19"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1506
+ dependencies = [
1507
+ "autocfg",
1508
+ "libm",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "objc2-core-foundation"
1513
+ version = "0.3.2"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1516
+ dependencies = [
1517
+ "bitflags",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "objc2-io-kit"
1522
+ version = "0.3.2"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
1525
+ dependencies = [
1526
+ "libc",
1527
+ "objc2-core-foundation",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "object"
1532
+ version = "0.37.3"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1535
+ dependencies = [
1536
+ "memchr",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "object_store"
1541
+ version = "0.13.2"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49"
1544
+ dependencies = [
1545
+ "async-trait",
1546
+ "base64",
1547
+ "bytes",
1548
+ "chrono",
1549
+ "form_urlencoded",
1550
+ "futures-channel",
1551
+ "futures-core",
1552
+ "futures-util",
1553
+ "http",
1554
+ "http-body-util",
1555
+ "humantime",
1556
+ "hyper",
1557
+ "itertools",
1558
+ "parking_lot",
1559
+ "percent-encoding",
1560
+ "quick-xml",
1561
+ "rand 0.10.2",
1562
+ "reqwest",
1563
+ "ring",
1564
+ "serde",
1565
+ "serde_json",
1566
+ "serde_urlencoded",
1567
+ "thiserror",
1568
+ "tokio",
1569
+ "tracing",
1570
+ "url",
1571
+ "walkdir",
1572
+ "wasm-bindgen-futures",
1573
+ "web-time",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "once_cell"
1578
+ version = "1.21.4"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1581
+
1582
+ [[package]]
1583
+ name = "once_cell_polyfill"
1584
+ version = "1.70.2"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1587
+
1588
+ [[package]]
1589
+ name = "openssl-probe"
1590
+ version = "0.2.1"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1593
+
1594
+ [[package]]
1595
+ name = "parking"
1596
+ version = "2.2.1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1599
+
1600
+ [[package]]
1601
+ name = "parking_lot"
1602
+ version = "0.12.5"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1605
+ dependencies = [
1606
+ "lock_api",
1607
+ "parking_lot_core",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "parking_lot_core"
1612
+ version = "0.9.12"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1615
+ dependencies = [
1616
+ "cfg-if",
1617
+ "libc",
1618
+ "redox_syscall",
1619
+ "smallvec",
1620
+ "windows-link 0.2.1",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "percent-encoding"
1625
+ version = "2.3.2"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1628
+
1629
+ [[package]]
1630
+ name = "pgen-core"
1631
+ version = "0.1.0"
1632
+ dependencies = [
1633
+ "flate2",
1634
+ "memmap2",
1635
+ "polars",
1636
+ "rayon",
1637
+ "rusqlite",
1638
+ "tempfile",
1639
+ "thiserror",
1640
+ "zstd",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "pgen-python"
1645
+ version = "0.1.0"
1646
+ dependencies = [
1647
+ "arrow-array",
1648
+ "arrow-schema",
1649
+ "pgen-core",
1650
+ "pyo3",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "pgen-rs"
1655
+ version = "0.1.0"
1656
+ dependencies = [
1657
+ "clap",
1658
+ "pgen-core",
1659
+ "rayon",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "phf"
1664
+ version = "0.12.1"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1667
+ dependencies = [
1668
+ "phf_shared",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "phf_shared"
1673
+ version = "0.12.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1676
+ dependencies = [
1677
+ "siphasher",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "pin-project-lite"
1682
+ version = "0.2.17"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1685
+
1686
+ [[package]]
1687
+ name = "pkg-config"
1688
+ version = "0.3.33"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1691
+
1692
+ [[package]]
1693
+ name = "planus"
1694
+ version = "1.1.1"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1697
+ dependencies = [
1698
+ "array-init-cursor",
1699
+ "hashbrown 0.15.5",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "polars"
1704
+ version = "0.54.4"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "82f1f122456ec136102033b13f71905b7c3f01e526642679c86aace9f9cdefde"
1707
+ dependencies = [
1708
+ "getrandom 0.2.17",
1709
+ "getrandom 0.3.4",
1710
+ "polars-arrow",
1711
+ "polars-buffer",
1712
+ "polars-compute",
1713
+ "polars-core",
1714
+ "polars-error",
1715
+ "polars-io",
1716
+ "polars-lazy",
1717
+ "polars-ops",
1718
+ "polars-sql",
1719
+ "polars-time",
1720
+ "polars-utils",
1721
+ "version_check",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "polars-arrow"
1726
+ version = "0.54.4"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "87d4892d5cc6461bb4a184d18e6fa03a5d316ee1d6de06a33dfa08d479fbc2db"
1729
+ dependencies = [
1730
+ "atoi_simd",
1731
+ "bitflags",
1732
+ "bytemuck",
1733
+ "bytes",
1734
+ "chrono",
1735
+ "chrono-tz",
1736
+ "dyn-clone",
1737
+ "either",
1738
+ "ethnum",
1739
+ "getrandom 0.2.17",
1740
+ "getrandom 0.3.4",
1741
+ "half",
1742
+ "hashbrown 0.16.1",
1743
+ "itoa",
1744
+ "lz4",
1745
+ "num-traits",
1746
+ "polars-arrow-format",
1747
+ "polars-buffer",
1748
+ "polars-error",
1749
+ "polars-schema",
1750
+ "polars-utils",
1751
+ "serde",
1752
+ "simdutf8",
1753
+ "streaming-iterator",
1754
+ "strum_macros",
1755
+ "version_check",
1756
+ "zstd",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "polars-arrow-format"
1761
+ version = "0.2.1"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1764
+ dependencies = [
1765
+ "planus",
1766
+ "serde",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "polars-async"
1771
+ version = "0.54.4"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "91e87f836190486f500b28347436985cc0af29b7a514e53f98840d396ce4d5f5"
1774
+ dependencies = [
1775
+ "atomic-waker",
1776
+ "crossbeam-channel",
1777
+ "crossbeam-deque",
1778
+ "crossbeam-utils",
1779
+ "parking_lot",
1780
+ "pin-project-lite",
1781
+ "polars-config",
1782
+ "polars-error",
1783
+ "polars-utils",
1784
+ "rand 0.9.5",
1785
+ "slotmap",
1786
+ "tokio",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "polars-buffer"
1791
+ version = "0.54.4"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "e481eeaf33c544ac0dd71a2e375553ca2fdae47b3472a96eaccb6eb43218783d"
1794
+ dependencies = [
1795
+ "bytemuck",
1796
+ "either",
1797
+ "polars-utils",
1798
+ "serde",
1799
+ "version_check",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "polars-compute"
1804
+ version = "0.54.4"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "c55d41642a9ee887ac394c5a310af3256fa8340a86cde2cb624c515aa963461c"
1807
+ dependencies = [
1808
+ "atoi_simd",
1809
+ "bytemuck",
1810
+ "chrono",
1811
+ "either",
1812
+ "fast-float2",
1813
+ "half",
1814
+ "hashbrown 0.16.1",
1815
+ "itoa",
1816
+ "num-traits",
1817
+ "polars-arrow",
1818
+ "polars-buffer",
1819
+ "polars-error",
1820
+ "polars-utils",
1821
+ "rand 0.9.5",
1822
+ "serde",
1823
+ "strength_reduce",
1824
+ "strum_macros",
1825
+ "version_check",
1826
+ "zmij",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "polars-config"
1831
+ version = "0.54.4"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "65af861341b00eac73bcb65423fb5cc3d2322526d6b7561a0ddf094947c38033"
1834
+ dependencies = [
1835
+ "polars-error",
1836
+ "serde",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "polars-core"
1841
+ version = "0.54.4"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "3e5924fc46306054bae78f9d35ea5e404cf185baa7f170eb55a16ff95191069c"
1844
+ dependencies = [
1845
+ "bitflags",
1846
+ "boxcar",
1847
+ "bytemuck",
1848
+ "chrono",
1849
+ "chrono-tz",
1850
+ "either",
1851
+ "getrandom 0.3.4",
1852
+ "hashbrown 0.16.1",
1853
+ "indexmap",
1854
+ "itoa",
1855
+ "num-traits",
1856
+ "polars-arrow",
1857
+ "polars-async",
1858
+ "polars-buffer",
1859
+ "polars-compute",
1860
+ "polars-config",
1861
+ "polars-dtype",
1862
+ "polars-error",
1863
+ "polars-row",
1864
+ "polars-schema",
1865
+ "polars-utils",
1866
+ "rand 0.9.5",
1867
+ "rand_distr",
1868
+ "rayon",
1869
+ "regex",
1870
+ "serde",
1871
+ "serde_json",
1872
+ "strum_macros",
1873
+ "tokio",
1874
+ "uuid",
1875
+ "version_check",
1876
+ "xxhash-rust",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "polars-dtype"
1881
+ version = "0.54.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "7b65a750bb99ea66be90c8a7e336f6f3a87427a0f7f89d2a40adae98314e9b27"
1884
+ dependencies = [
1885
+ "boxcar",
1886
+ "hashbrown 0.16.1",
1887
+ "polars-arrow",
1888
+ "polars-error",
1889
+ "polars-utils",
1890
+ "serde",
1891
+ "uuid",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "polars-error"
1896
+ version = "0.54.4"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "e49a75e3406b9b5b4e5ff177877fe0de766e9688fbdb263a7b25f293dc47d61a"
1899
+ dependencies = [
1900
+ "object_store",
1901
+ "parking_lot",
1902
+ "polars-arrow-format",
1903
+ "regex",
1904
+ "signal-hook",
1905
+ "simdutf8",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "polars-expr"
1910
+ version = "0.54.4"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "e21fdd37e8d9ef109f13d3454baffa0a57041cf60069123b8a2bd846c8ad0205"
1913
+ dependencies = [
1914
+ "bitflags",
1915
+ "hashbrown 0.16.1",
1916
+ "num-traits",
1917
+ "polars-arrow",
1918
+ "polars-buffer",
1919
+ "polars-compute",
1920
+ "polars-core",
1921
+ "polars-io",
1922
+ "polars-ops",
1923
+ "polars-plan",
1924
+ "polars-row",
1925
+ "polars-time",
1926
+ "polars-utils",
1927
+ "rand 0.9.5",
1928
+ "rayon",
1929
+ "recursive",
1930
+ "regex",
1931
+ "version_check",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "polars-io"
1936
+ version = "0.54.4"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "6363a1c44a65fe8d73cce7fe4d77c9b6fea3a0da44007012e755e5b4e65aa078"
1939
+ dependencies = [
1940
+ "async-trait",
1941
+ "atoi_simd",
1942
+ "blake3",
1943
+ "bytes",
1944
+ "fast-float2",
1945
+ "fastrand",
1946
+ "fs4",
1947
+ "futures",
1948
+ "glob",
1949
+ "hashbrown 0.16.1",
1950
+ "home",
1951
+ "itoa",
1952
+ "memchr",
1953
+ "memmap2",
1954
+ "num-traits",
1955
+ "object_store",
1956
+ "parking_lot",
1957
+ "percent-encoding",
1958
+ "polars-arrow",
1959
+ "polars-buffer",
1960
+ "polars-compute",
1961
+ "polars-config",
1962
+ "polars-core",
1963
+ "polars-error",
1964
+ "polars-parquet",
1965
+ "polars-schema",
1966
+ "polars-utils",
1967
+ "rand 0.9.5",
1968
+ "rayon",
1969
+ "regex",
1970
+ "reqwest",
1971
+ "serde",
1972
+ "serde_json",
1973
+ "simdutf8",
1974
+ "tokio",
1975
+ "zmij",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "polars-lazy"
1980
+ version = "0.54.4"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "809d9590232a37d638337629c18279af97bdb0d17c3d8b2b6bb186e903e8bd5e"
1983
+ dependencies = [
1984
+ "bitflags",
1985
+ "chrono",
1986
+ "either",
1987
+ "memchr",
1988
+ "polars-arrow",
1989
+ "polars-buffer",
1990
+ "polars-compute",
1991
+ "polars-config",
1992
+ "polars-core",
1993
+ "polars-expr",
1994
+ "polars-io",
1995
+ "polars-mem-engine",
1996
+ "polars-ops",
1997
+ "polars-plan",
1998
+ "polars-stream",
1999
+ "polars-time",
2000
+ "polars-utils",
2001
+ "rayon",
2002
+ "version_check",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "polars-mem-engine"
2007
+ version = "0.54.4"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "f55c6b7d162c506bc8eee82b065fa0399ebcd20b8f08675a534f3d360904ba38"
2010
+ dependencies = [
2011
+ "memmap2",
2012
+ "polars-arrow",
2013
+ "polars-core",
2014
+ "polars-error",
2015
+ "polars-expr",
2016
+ "polars-io",
2017
+ "polars-ops",
2018
+ "polars-plan",
2019
+ "polars-time",
2020
+ "polars-utils",
2021
+ "rayon",
2022
+ "recursive",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "polars-ooc"
2027
+ version = "0.54.4"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "78b3eea0b386837b760a97ec9c92df99cbc10f94885cae060fd7100f9b794163"
2030
+ dependencies = [
2031
+ "async-trait",
2032
+ "boxcar",
2033
+ "libc",
2034
+ "polars-async",
2035
+ "polars-config",
2036
+ "polars-core",
2037
+ "polars-io",
2038
+ "polars-utils",
2039
+ "thread_local",
2040
+ "tokio",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "polars-ops"
2045
+ version = "0.54.4"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "cb146490a717ac5ae4ff3a22a5adf3ebae79361f187b1f550f9e24783d7ad765"
2048
+ dependencies = [
2049
+ "argminmax",
2050
+ "base64",
2051
+ "bytemuck",
2052
+ "chrono",
2053
+ "chrono-tz",
2054
+ "either",
2055
+ "hashbrown 0.16.1",
2056
+ "hex",
2057
+ "indexmap",
2058
+ "libm",
2059
+ "memchr",
2060
+ "num-traits",
2061
+ "polars-arrow",
2062
+ "polars-buffer",
2063
+ "polars-compute",
2064
+ "polars-core",
2065
+ "polars-error",
2066
+ "polars-schema",
2067
+ "polars-utils",
2068
+ "rayon",
2069
+ "regex",
2070
+ "regex-syntax",
2071
+ "strum_macros",
2072
+ "unicode-normalization",
2073
+ "unicode-reverse",
2074
+ "version_check",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "polars-parquet"
2079
+ version = "0.54.4"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "fd6b79ba2103c00cbb9c5dd4459ffff1d8ce15286c7a6d376a04c711df20d8b7"
2082
+ dependencies = [
2083
+ "async-stream",
2084
+ "base64",
2085
+ "bytemuck",
2086
+ "ethnum",
2087
+ "futures",
2088
+ "hashbrown 0.16.1",
2089
+ "num-traits",
2090
+ "polars-arrow",
2091
+ "polars-buffer",
2092
+ "polars-compute",
2093
+ "polars-config",
2094
+ "polars-error",
2095
+ "polars-parquet-format",
2096
+ "polars-utils",
2097
+ "regex",
2098
+ "serde",
2099
+ "simdutf8",
2100
+ "streaming-decompression",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "polars-parquet-format"
2105
+ version = "0.1.0"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
2108
+ dependencies = [
2109
+ "async-trait",
2110
+ "futures",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "polars-plan"
2115
+ version = "0.54.4"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "2f5ccc230515adb10762a8c7b0df03fd88f3328deb5b60e9b1eeb2eceef4d344"
2118
+ dependencies = [
2119
+ "bitflags",
2120
+ "blake3",
2121
+ "bytemuck",
2122
+ "bytes",
2123
+ "chrono",
2124
+ "chrono-tz",
2125
+ "either",
2126
+ "futures",
2127
+ "hashbrown 0.16.1",
2128
+ "indexmap",
2129
+ "memmap2",
2130
+ "num-traits",
2131
+ "percent-encoding",
2132
+ "polars-arrow",
2133
+ "polars-buffer",
2134
+ "polars-compute",
2135
+ "polars-config",
2136
+ "polars-core",
2137
+ "polars-error",
2138
+ "polars-io",
2139
+ "polars-ops",
2140
+ "polars-time",
2141
+ "polars-utils",
2142
+ "rayon",
2143
+ "recursive",
2144
+ "regex",
2145
+ "sha2",
2146
+ "slotmap",
2147
+ "strum_macros",
2148
+ "tokio",
2149
+ "version_check",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "polars-row"
2154
+ version = "0.54.4"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "3d4e3254450024078e10c919ecd3b467bdcfdd5cf386c2ca6eedec89bd4771d2"
2157
+ dependencies = [
2158
+ "bitflags",
2159
+ "bytemuck",
2160
+ "polars-arrow",
2161
+ "polars-buffer",
2162
+ "polars-compute",
2163
+ "polars-dtype",
2164
+ "polars-error",
2165
+ "polars-utils",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "polars-schema"
2170
+ version = "0.54.4"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "6f8a0de8951d02576fd0cdcecd9c605a6b6364d3105b7469b8d7874ea34eea2f"
2173
+ dependencies = [
2174
+ "indexmap",
2175
+ "polars-error",
2176
+ "polars-utils",
2177
+ "serde",
2178
+ "version_check",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "polars-sql"
2183
+ version = "0.54.4"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "b282a6164927eb12774b66b071b773a1573173ae53758e8d4df50389ff06efa2"
2186
+ dependencies = [
2187
+ "bitflags",
2188
+ "hex",
2189
+ "polars-core",
2190
+ "polars-error",
2191
+ "polars-lazy",
2192
+ "polars-ops",
2193
+ "polars-plan",
2194
+ "polars-time",
2195
+ "polars-utils",
2196
+ "regex",
2197
+ "serde",
2198
+ "sqlparser",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "polars-stream"
2203
+ version = "0.54.4"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "cfa8ff4ee21799898579595a0ef2fb728d0a9cac3d061835fb7f7f6dd854734a"
2206
+ dependencies = [
2207
+ "async-channel",
2208
+ "async-trait",
2209
+ "bitflags",
2210
+ "bytes",
2211
+ "chrono-tz",
2212
+ "crossbeam-channel",
2213
+ "crossbeam-queue",
2214
+ "futures",
2215
+ "memchr",
2216
+ "num-traits",
2217
+ "parking_lot",
2218
+ "percent-encoding",
2219
+ "polars-arrow",
2220
+ "polars-async",
2221
+ "polars-buffer",
2222
+ "polars-compute",
2223
+ "polars-config",
2224
+ "polars-core",
2225
+ "polars-error",
2226
+ "polars-expr",
2227
+ "polars-io",
2228
+ "polars-mem-engine",
2229
+ "polars-ooc",
2230
+ "polars-ops",
2231
+ "polars-parquet",
2232
+ "polars-plan",
2233
+ "polars-time",
2234
+ "polars-utils",
2235
+ "rayon",
2236
+ "recursive",
2237
+ "slotmap",
2238
+ "tokio",
2239
+ "uuid",
2240
+ "version_check",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "polars-time"
2245
+ version = "0.54.4"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "e1063fe074c4212a54917be604377c6e6bfbc8b6c942a5c57be214e4ccaaafdf"
2248
+ dependencies = [
2249
+ "atoi_simd",
2250
+ "bytemuck",
2251
+ "chrono",
2252
+ "chrono-tz",
2253
+ "now",
2254
+ "num-traits",
2255
+ "polars-arrow",
2256
+ "polars-compute",
2257
+ "polars-core",
2258
+ "polars-error",
2259
+ "polars-ops",
2260
+ "polars-utils",
2261
+ "rayon",
2262
+ "regex",
2263
+ "strum_macros",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "polars-utils"
2268
+ version = "0.54.4"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "590b0a94aa8f97992d52f1198600ecc1c1f7cfa03c1b31cae057143455804ac0"
2271
+ dependencies = [
2272
+ "argminmax",
2273
+ "bincode",
2274
+ "bytemuck",
2275
+ "bytes",
2276
+ "compact_str",
2277
+ "either",
2278
+ "flate2",
2279
+ "foldhash 0.2.0",
2280
+ "futures",
2281
+ "half",
2282
+ "hashbrown 0.16.1",
2283
+ "indexmap",
2284
+ "libc",
2285
+ "memmap2",
2286
+ "num-derive",
2287
+ "num-traits",
2288
+ "polars-config",
2289
+ "polars-error",
2290
+ "rand 0.9.5",
2291
+ "raw-cpuid",
2292
+ "rayon",
2293
+ "regex",
2294
+ "rmp-serde",
2295
+ "serde",
2296
+ "serde_json",
2297
+ "serde_stacker",
2298
+ "slotmap",
2299
+ "stacker",
2300
+ "sysinfo",
2301
+ "tokio",
2302
+ "uuid",
2303
+ "version_check",
2304
+ ]
2305
+
2306
+ [[package]]
2307
+ name = "portable-atomic"
2308
+ version = "1.13.1"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2311
+
2312
+ [[package]]
2313
+ name = "potential_utf"
2314
+ version = "0.1.5"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2317
+ dependencies = [
2318
+ "zerovec",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "ppv-lite86"
2323
+ version = "0.2.21"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2326
+ dependencies = [
2327
+ "zerocopy",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "proc-macro2"
2332
+ version = "1.0.106"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2335
+ dependencies = [
2336
+ "unicode-ident",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "psm"
2341
+ version = "0.1.31"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea"
2344
+ dependencies = [
2345
+ "ar_archive_writer",
2346
+ "cc",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "pyo3"
2351
+ version = "0.23.5"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2354
+ dependencies = [
2355
+ "cfg-if",
2356
+ "indoc",
2357
+ "libc",
2358
+ "memoffset",
2359
+ "once_cell",
2360
+ "portable-atomic",
2361
+ "pyo3-build-config",
2362
+ "pyo3-ffi",
2363
+ "pyo3-macros",
2364
+ "unindent",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "pyo3-build-config"
2369
+ version = "0.23.5"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2372
+ dependencies = [
2373
+ "once_cell",
2374
+ "target-lexicon",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "pyo3-ffi"
2379
+ version = "0.23.5"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2382
+ dependencies = [
2383
+ "libc",
2384
+ "pyo3-build-config",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "pyo3-macros"
2389
+ version = "0.23.5"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2392
+ dependencies = [
2393
+ "proc-macro2",
2394
+ "pyo3-macros-backend",
2395
+ "quote",
2396
+ "syn",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "pyo3-macros-backend"
2401
+ version = "0.23.5"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2404
+ dependencies = [
2405
+ "heck",
2406
+ "proc-macro2",
2407
+ "pyo3-build-config",
2408
+ "quote",
2409
+ "syn",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "quick-xml"
2414
+ version = "0.39.4"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
2417
+ dependencies = [
2418
+ "memchr",
2419
+ "serde",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "quinn"
2424
+ version = "0.11.11"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2427
+ dependencies = [
2428
+ "bytes",
2429
+ "cfg_aliases",
2430
+ "pin-project-lite",
2431
+ "quinn-proto",
2432
+ "quinn-udp",
2433
+ "rustc-hash",
2434
+ "rustls",
2435
+ "socket2",
2436
+ "thiserror",
2437
+ "tokio",
2438
+ "tracing",
2439
+ "web-time",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "quinn-proto"
2444
+ version = "0.11.16"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2447
+ dependencies = [
2448
+ "bytes",
2449
+ "getrandom 0.4.3",
2450
+ "lru-slab",
2451
+ "rand 0.10.2",
2452
+ "rand_pcg",
2453
+ "ring",
2454
+ "rustc-hash",
2455
+ "rustls",
2456
+ "rustls-pki-types",
2457
+ "slab",
2458
+ "thiserror",
2459
+ "tinyvec",
2460
+ "tracing",
2461
+ "web-time",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "quinn-udp"
2466
+ version = "0.5.15"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2469
+ dependencies = [
2470
+ "cfg_aliases",
2471
+ "libc",
2472
+ "once_cell",
2473
+ "socket2",
2474
+ "tracing",
2475
+ "windows-sys 0.61.2",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "quote"
2480
+ version = "1.0.46"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2483
+ dependencies = [
2484
+ "proc-macro2",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "r-efi"
2489
+ version = "5.3.0"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2492
+
2493
+ [[package]]
2494
+ name = "r-efi"
2495
+ version = "6.0.0"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2498
+
2499
+ [[package]]
2500
+ name = "rand"
2501
+ version = "0.9.5"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
2504
+ dependencies = [
2505
+ "rand_chacha",
2506
+ "rand_core 0.9.5",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "rand"
2511
+ version = "0.10.2"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2514
+ dependencies = [
2515
+ "chacha20",
2516
+ "getrandom 0.4.3",
2517
+ "rand_core 0.10.1",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "rand_chacha"
2522
+ version = "0.9.0"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2525
+ dependencies = [
2526
+ "ppv-lite86",
2527
+ "rand_core 0.9.5",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "rand_core"
2532
+ version = "0.9.5"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2535
+ dependencies = [
2536
+ "getrandom 0.3.4",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "rand_core"
2541
+ version = "0.10.1"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2544
+
2545
+ [[package]]
2546
+ name = "rand_distr"
2547
+ version = "0.5.1"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2550
+ dependencies = [
2551
+ "num-traits",
2552
+ "rand 0.9.5",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "rand_pcg"
2557
+ version = "0.10.2"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2560
+ dependencies = [
2561
+ "rand_core 0.10.1",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "raw-cpuid"
2566
+ version = "11.6.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2569
+ dependencies = [
2570
+ "bitflags",
2571
+ ]
2572
+
2573
+ [[package]]
2574
+ name = "rayon"
2575
+ version = "1.12.0"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2578
+ dependencies = [
2579
+ "either",
2580
+ "rayon-core",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "rayon-core"
2585
+ version = "1.13.0"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2588
+ dependencies = [
2589
+ "crossbeam-deque",
2590
+ "crossbeam-utils",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "recursive"
2595
+ version = "0.1.1"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2598
+ dependencies = [
2599
+ "recursive-proc-macro-impl",
2600
+ "stacker",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "recursive-proc-macro-impl"
2605
+ version = "0.1.1"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2608
+ dependencies = [
2609
+ "quote",
2610
+ "syn",
2611
+ ]
2612
+
2613
+ [[package]]
2614
+ name = "redox_syscall"
2615
+ version = "0.5.18"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2618
+ dependencies = [
2619
+ "bitflags",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "regex"
2624
+ version = "1.13.0"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
2627
+ dependencies = [
2628
+ "aho-corasick",
2629
+ "memchr",
2630
+ "regex-automata",
2631
+ "regex-syntax",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "regex-automata"
2636
+ version = "0.4.15"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
2639
+ dependencies = [
2640
+ "aho-corasick",
2641
+ "memchr",
2642
+ "regex-syntax",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "regex-syntax"
2647
+ version = "0.8.11"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2650
+
2651
+ [[package]]
2652
+ name = "reqwest"
2653
+ version = "0.12.28"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2656
+ dependencies = [
2657
+ "base64",
2658
+ "bytes",
2659
+ "futures-core",
2660
+ "futures-util",
2661
+ "h2",
2662
+ "http",
2663
+ "http-body",
2664
+ "http-body-util",
2665
+ "hyper",
2666
+ "hyper-rustls",
2667
+ "hyper-util",
2668
+ "js-sys",
2669
+ "log",
2670
+ "percent-encoding",
2671
+ "pin-project-lite",
2672
+ "quinn",
2673
+ "rustls",
2674
+ "rustls-native-certs",
2675
+ "rustls-pki-types",
2676
+ "serde",
2677
+ "serde_json",
2678
+ "serde_urlencoded",
2679
+ "sync_wrapper",
2680
+ "tokio",
2681
+ "tokio-rustls",
2682
+ "tokio-util",
2683
+ "tower",
2684
+ "tower-http",
2685
+ "tower-service",
2686
+ "url",
2687
+ "wasm-bindgen",
2688
+ "wasm-bindgen-futures",
2689
+ "wasm-streams",
2690
+ "web-sys",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "ring"
2695
+ version = "0.17.14"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2698
+ dependencies = [
2699
+ "cc",
2700
+ "cfg-if",
2701
+ "getrandom 0.2.17",
2702
+ "libc",
2703
+ "untrusted",
2704
+ "windows-sys 0.52.0",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "rmp"
2709
+ version = "0.8.15"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
2712
+ dependencies = [
2713
+ "num-traits",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "rmp-serde"
2718
+ version = "1.3.1"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
2721
+ dependencies = [
2722
+ "rmp",
2723
+ "serde",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "rusqlite"
2728
+ version = "0.32.1"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
2731
+ dependencies = [
2732
+ "bitflags",
2733
+ "fallible-iterator",
2734
+ "fallible-streaming-iterator",
2735
+ "hashlink",
2736
+ "libsqlite3-sys",
2737
+ "smallvec",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "rustc-hash"
2742
+ version = "2.1.3"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2745
+
2746
+ [[package]]
2747
+ name = "rustix"
2748
+ version = "1.1.4"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2751
+ dependencies = [
2752
+ "bitflags",
2753
+ "errno",
2754
+ "libc",
2755
+ "linux-raw-sys",
2756
+ "windows-sys 0.61.2",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "rustls"
2761
+ version = "0.23.42"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
2764
+ dependencies = [
2765
+ "once_cell",
2766
+ "ring",
2767
+ "rustls-pki-types",
2768
+ "rustls-webpki",
2769
+ "subtle",
2770
+ "zeroize",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "rustls-native-certs"
2775
+ version = "0.8.4"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2778
+ dependencies = [
2779
+ "openssl-probe",
2780
+ "rustls-pki-types",
2781
+ "schannel",
2782
+ "security-framework",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "rustls-pki-types"
2787
+ version = "1.15.0"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2790
+ dependencies = [
2791
+ "web-time",
2792
+ "zeroize",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "rustls-webpki"
2797
+ version = "0.103.13"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2800
+ dependencies = [
2801
+ "ring",
2802
+ "rustls-pki-types",
2803
+ "untrusted",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "rustversion"
2808
+ version = "1.0.23"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2811
+
2812
+ [[package]]
2813
+ name = "ryu"
2814
+ version = "1.0.23"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2817
+
2818
+ [[package]]
2819
+ name = "same-file"
2820
+ version = "1.0.6"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2823
+ dependencies = [
2824
+ "winapi-util",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "schannel"
2829
+ version = "0.1.29"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2832
+ dependencies = [
2833
+ "windows-sys 0.61.2",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "scopeguard"
2838
+ version = "1.2.0"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2841
+
2842
+ [[package]]
2843
+ name = "security-framework"
2844
+ version = "3.7.0"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2847
+ dependencies = [
2848
+ "bitflags",
2849
+ "core-foundation",
2850
+ "core-foundation-sys",
2851
+ "libc",
2852
+ "security-framework-sys",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "security-framework-sys"
2857
+ version = "2.17.0"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2860
+ dependencies = [
2861
+ "core-foundation-sys",
2862
+ "libc",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "serde"
2867
+ version = "1.0.228"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2870
+ dependencies = [
2871
+ "serde_core",
2872
+ "serde_derive",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "serde_core"
2877
+ version = "1.0.228"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2880
+ dependencies = [
2881
+ "serde_derive",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "serde_derive"
2886
+ version = "1.0.228"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2889
+ dependencies = [
2890
+ "proc-macro2",
2891
+ "quote",
2892
+ "syn",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "serde_json"
2897
+ version = "1.0.150"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2900
+ dependencies = [
2901
+ "itoa",
2902
+ "memchr",
2903
+ "serde",
2904
+ "serde_core",
2905
+ "zmij",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "serde_stacker"
2910
+ version = "0.1.14"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
2913
+ dependencies = [
2914
+ "serde",
2915
+ "serde_core",
2916
+ "stacker",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "serde_urlencoded"
2921
+ version = "0.7.1"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2924
+ dependencies = [
2925
+ "form_urlencoded",
2926
+ "itoa",
2927
+ "ryu",
2928
+ "serde",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "sha2"
2933
+ version = "0.10.9"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2936
+ dependencies = [
2937
+ "cfg-if",
2938
+ "cpufeatures 0.2.17",
2939
+ "digest",
2940
+ ]
2941
+
2942
+ [[package]]
2943
+ name = "shlex"
2944
+ version = "2.0.1"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2947
+
2948
+ [[package]]
2949
+ name = "signal-hook"
2950
+ version = "0.4.4"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d"
2953
+ dependencies = [
2954
+ "libc",
2955
+ "signal-hook-registry",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "signal-hook-registry"
2960
+ version = "1.4.8"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2963
+ dependencies = [
2964
+ "errno",
2965
+ "libc",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "simd-adler32"
2970
+ version = "0.3.9"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2973
+
2974
+ [[package]]
2975
+ name = "simdutf8"
2976
+ version = "0.1.5"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2979
+
2980
+ [[package]]
2981
+ name = "siphasher"
2982
+ version = "1.0.3"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2985
+
2986
+ [[package]]
2987
+ name = "slab"
2988
+ version = "0.4.12"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2991
+
2992
+ [[package]]
2993
+ name = "slotmap"
2994
+ version = "1.1.1"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2997
+ dependencies = [
2998
+ "version_check",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "smallvec"
3003
+ version = "1.15.2"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3006
+
3007
+ [[package]]
3008
+ name = "socket2"
3009
+ version = "0.6.4"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3012
+ dependencies = [
3013
+ "libc",
3014
+ "windows-sys 0.61.2",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "sqlparser"
3019
+ version = "0.60.0"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "505aa16b045c4c1375bf5f125cce3813d0176325bfe9ffc4a903f423de7774ff"
3022
+ dependencies = [
3023
+ "log",
3024
+ "recursive",
3025
+ "sqlparser_derive",
3026
+ ]
3027
+
3028
+ [[package]]
3029
+ name = "sqlparser_derive"
3030
+ version = "0.4.0"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "028e551d5e270b31b9f3ea271778d9d827148d4287a5d96167b6bb9787f5cc38"
3033
+ dependencies = [
3034
+ "proc-macro2",
3035
+ "quote",
3036
+ "syn",
3037
+ ]
3038
+
3039
+ [[package]]
3040
+ name = "stable_deref_trait"
3041
+ version = "1.2.1"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3044
+
3045
+ [[package]]
3046
+ name = "stacker"
3047
+ version = "0.1.24"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "640c8cdd92b6b12f5bcb1803ca3bbf5ab96e5e6b6b96b9ab77dabe9e880b3190"
3050
+ dependencies = [
3051
+ "cc",
3052
+ "cfg-if",
3053
+ "libc",
3054
+ "psm",
3055
+ "windows-sys 0.61.2",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "static_assertions"
3060
+ version = "1.1.0"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3063
+
3064
+ [[package]]
3065
+ name = "streaming-decompression"
3066
+ version = "0.1.2"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
3069
+ dependencies = [
3070
+ "fallible-streaming-iterator",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "streaming-iterator"
3075
+ version = "0.1.9"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3078
+
3079
+ [[package]]
3080
+ name = "strength_reduce"
3081
+ version = "0.2.4"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3084
+
3085
+ [[package]]
3086
+ name = "strsim"
3087
+ version = "0.11.1"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3090
+
3091
+ [[package]]
3092
+ name = "strum_macros"
3093
+ version = "0.27.2"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3096
+ dependencies = [
3097
+ "heck",
3098
+ "proc-macro2",
3099
+ "quote",
3100
+ "syn",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "subtle"
3105
+ version = "2.6.1"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3108
+
3109
+ [[package]]
3110
+ name = "syn"
3111
+ version = "2.0.118"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3114
+ dependencies = [
3115
+ "proc-macro2",
3116
+ "quote",
3117
+ "unicode-ident",
3118
+ ]
3119
+
3120
+ [[package]]
3121
+ name = "sync_wrapper"
3122
+ version = "1.0.2"
3123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3124
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3125
+ dependencies = [
3126
+ "futures-core",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "synstructure"
3131
+ version = "0.13.2"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3134
+ dependencies = [
3135
+ "proc-macro2",
3136
+ "quote",
3137
+ "syn",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "sysinfo"
3142
+ version = "0.37.2"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
3145
+ dependencies = [
3146
+ "libc",
3147
+ "memchr",
3148
+ "ntapi",
3149
+ "objc2-core-foundation",
3150
+ "objc2-io-kit",
3151
+ "windows",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "target-lexicon"
3156
+ version = "0.12.16"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3159
+
3160
+ [[package]]
3161
+ name = "tempfile"
3162
+ version = "3.27.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3165
+ dependencies = [
3166
+ "fastrand",
3167
+ "getrandom 0.4.3",
3168
+ "once_cell",
3169
+ "rustix",
3170
+ "windows-sys 0.61.2",
3171
+ ]
3172
+
3173
+ [[package]]
3174
+ name = "thiserror"
3175
+ version = "2.0.18"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3178
+ dependencies = [
3179
+ "thiserror-impl",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "thiserror-impl"
3184
+ version = "2.0.18"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3187
+ dependencies = [
3188
+ "proc-macro2",
3189
+ "quote",
3190
+ "syn",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "thread_local"
3195
+ version = "1.1.10"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
3198
+ dependencies = [
3199
+ "cfg-if",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "tiny-keccak"
3204
+ version = "2.0.2"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3207
+ dependencies = [
3208
+ "crunchy",
3209
+ ]
3210
+
3211
+ [[package]]
3212
+ name = "tinystr"
3213
+ version = "0.8.3"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3216
+ dependencies = [
3217
+ "displaydoc",
3218
+ "zerovec",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "tinyvec"
3223
+ version = "1.12.0"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
3226
+ dependencies = [
3227
+ "tinyvec_macros",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "tinyvec_macros"
3232
+ version = "0.1.1"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3235
+
3236
+ [[package]]
3237
+ name = "tokio"
3238
+ version = "1.52.3"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3241
+ dependencies = [
3242
+ "bytes",
3243
+ "libc",
3244
+ "mio",
3245
+ "pin-project-lite",
3246
+ "socket2",
3247
+ "tokio-macros",
3248
+ "windows-sys 0.61.2",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "tokio-macros"
3253
+ version = "2.7.0"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3256
+ dependencies = [
3257
+ "proc-macro2",
3258
+ "quote",
3259
+ "syn",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "tokio-rustls"
3264
+ version = "0.26.4"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3267
+ dependencies = [
3268
+ "rustls",
3269
+ "tokio",
3270
+ ]
3271
+
3272
+ [[package]]
3273
+ name = "tokio-util"
3274
+ version = "0.7.18"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3277
+ dependencies = [
3278
+ "bytes",
3279
+ "futures-core",
3280
+ "futures-sink",
3281
+ "pin-project-lite",
3282
+ "tokio",
3283
+ ]
3284
+
3285
+ [[package]]
3286
+ name = "tower"
3287
+ version = "0.5.3"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3290
+ dependencies = [
3291
+ "futures-core",
3292
+ "futures-util",
3293
+ "pin-project-lite",
3294
+ "sync_wrapper",
3295
+ "tokio",
3296
+ "tower-layer",
3297
+ "tower-service",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "tower-http"
3302
+ version = "0.6.11"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3305
+ dependencies = [
3306
+ "bitflags",
3307
+ "bytes",
3308
+ "futures-util",
3309
+ "http",
3310
+ "http-body",
3311
+ "pin-project-lite",
3312
+ "tower",
3313
+ "tower-layer",
3314
+ "tower-service",
3315
+ "url",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "tower-layer"
3320
+ version = "0.3.3"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3323
+
3324
+ [[package]]
3325
+ name = "tower-service"
3326
+ version = "0.3.3"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3329
+
3330
+ [[package]]
3331
+ name = "tracing"
3332
+ version = "0.1.44"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3335
+ dependencies = [
3336
+ "pin-project-lite",
3337
+ "tracing-attributes",
3338
+ "tracing-core",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "tracing-attributes"
3343
+ version = "0.1.31"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3346
+ dependencies = [
3347
+ "proc-macro2",
3348
+ "quote",
3349
+ "syn",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "tracing-core"
3354
+ version = "0.1.36"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3357
+ dependencies = [
3358
+ "once_cell",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "try-lock"
3363
+ version = "0.2.5"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3366
+
3367
+ [[package]]
3368
+ name = "typenum"
3369
+ version = "1.20.1"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3372
+
3373
+ [[package]]
3374
+ name = "unicode-ident"
3375
+ version = "1.0.24"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3378
+
3379
+ [[package]]
3380
+ name = "unicode-normalization"
3381
+ version = "0.1.25"
3382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3383
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3384
+ dependencies = [
3385
+ "tinyvec",
3386
+ ]
3387
+
3388
+ [[package]]
3389
+ name = "unicode-reverse"
3390
+ version = "1.0.9"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3393
+ dependencies = [
3394
+ "unicode-segmentation",
3395
+ ]
3396
+
3397
+ [[package]]
3398
+ name = "unicode-segmentation"
3399
+ version = "1.13.3"
3400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3402
+
3403
+ [[package]]
3404
+ name = "unindent"
3405
+ version = "0.2.4"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3408
+
3409
+ [[package]]
3410
+ name = "untrusted"
3411
+ version = "0.9.0"
3412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3413
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3414
+
3415
+ [[package]]
3416
+ name = "unty"
3417
+ version = "0.0.4"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3420
+
3421
+ [[package]]
3422
+ name = "url"
3423
+ version = "2.5.8"
3424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3425
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3426
+ dependencies = [
3427
+ "form_urlencoded",
3428
+ "idna",
3429
+ "percent-encoding",
3430
+ "serde",
3431
+ ]
3432
+
3433
+ [[package]]
3434
+ name = "utf8_iter"
3435
+ version = "1.0.4"
3436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3437
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3438
+
3439
+ [[package]]
3440
+ name = "utf8parse"
3441
+ version = "0.2.2"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3444
+
3445
+ [[package]]
3446
+ name = "uuid"
3447
+ version = "1.23.5"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
3450
+ dependencies = [
3451
+ "getrandom 0.4.3",
3452
+ "js-sys",
3453
+ "serde_core",
3454
+ "wasm-bindgen",
3455
+ ]
3456
+
3457
+ [[package]]
3458
+ name = "vcpkg"
3459
+ version = "0.2.15"
3460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3461
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3462
+
3463
+ [[package]]
3464
+ name = "version_check"
3465
+ version = "0.9.5"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3468
+
3469
+ [[package]]
3470
+ name = "virtue"
3471
+ version = "0.0.18"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3474
+
3475
+ [[package]]
3476
+ name = "walkdir"
3477
+ version = "2.5.0"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3480
+ dependencies = [
3481
+ "same-file",
3482
+ "winapi-util",
3483
+ ]
3484
+
3485
+ [[package]]
3486
+ name = "want"
3487
+ version = "0.3.1"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3490
+ dependencies = [
3491
+ "try-lock",
3492
+ ]
3493
+
3494
+ [[package]]
3495
+ name = "wasi"
3496
+ version = "0.11.1+wasi-snapshot-preview1"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3499
+
3500
+ [[package]]
3501
+ name = "wasip2"
3502
+ version = "1.0.1+wasi-0.2.4"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3505
+ dependencies = [
3506
+ "wit-bindgen",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "wasm-bindgen"
3511
+ version = "0.2.126"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3514
+ dependencies = [
3515
+ "cfg-if",
3516
+ "once_cell",
3517
+ "rustversion",
3518
+ "wasm-bindgen-macro",
3519
+ "wasm-bindgen-shared",
3520
+ ]
3521
+
3522
+ [[package]]
3523
+ name = "wasm-bindgen-futures"
3524
+ version = "0.4.76"
3525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3526
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3527
+ dependencies = [
3528
+ "js-sys",
3529
+ "wasm-bindgen",
3530
+ ]
3531
+
3532
+ [[package]]
3533
+ name = "wasm-bindgen-macro"
3534
+ version = "0.2.126"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3537
+ dependencies = [
3538
+ "quote",
3539
+ "wasm-bindgen-macro-support",
3540
+ ]
3541
+
3542
+ [[package]]
3543
+ name = "wasm-bindgen-macro-support"
3544
+ version = "0.2.126"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3547
+ dependencies = [
3548
+ "bumpalo",
3549
+ "proc-macro2",
3550
+ "quote",
3551
+ "syn",
3552
+ "wasm-bindgen-shared",
3553
+ ]
3554
+
3555
+ [[package]]
3556
+ name = "wasm-bindgen-shared"
3557
+ version = "0.2.126"
3558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3559
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3560
+ dependencies = [
3561
+ "unicode-ident",
3562
+ ]
3563
+
3564
+ [[package]]
3565
+ name = "wasm-streams"
3566
+ version = "0.4.2"
3567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3568
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3569
+ dependencies = [
3570
+ "futures-util",
3571
+ "js-sys",
3572
+ "wasm-bindgen",
3573
+ "wasm-bindgen-futures",
3574
+ "web-sys",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "web-sys"
3579
+ version = "0.3.103"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
3582
+ dependencies = [
3583
+ "js-sys",
3584
+ "wasm-bindgen",
3585
+ ]
3586
+
3587
+ [[package]]
3588
+ name = "web-time"
3589
+ version = "1.1.0"
3590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3591
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3592
+ dependencies = [
3593
+ "js-sys",
3594
+ "wasm-bindgen",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "winapi"
3599
+ version = "0.3.9"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3602
+ dependencies = [
3603
+ "winapi-i686-pc-windows-gnu",
3604
+ "winapi-x86_64-pc-windows-gnu",
3605
+ ]
3606
+
3607
+ [[package]]
3608
+ name = "winapi-i686-pc-windows-gnu"
3609
+ version = "0.4.0"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3612
+
3613
+ [[package]]
3614
+ name = "winapi-util"
3615
+ version = "0.1.11"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3618
+ dependencies = [
3619
+ "windows-sys 0.61.2",
3620
+ ]
3621
+
3622
+ [[package]]
3623
+ name = "winapi-x86_64-pc-windows-gnu"
3624
+ version = "0.4.0"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3627
+
3628
+ [[package]]
3629
+ name = "windows"
3630
+ version = "0.61.3"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
3633
+ dependencies = [
3634
+ "windows-collections",
3635
+ "windows-core 0.61.2",
3636
+ "windows-future",
3637
+ "windows-link 0.1.3",
3638
+ "windows-numerics",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "windows-collections"
3643
+ version = "0.2.0"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
3646
+ dependencies = [
3647
+ "windows-core 0.61.2",
3648
+ ]
3649
+
3650
+ [[package]]
3651
+ name = "windows-core"
3652
+ version = "0.61.2"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3655
+ dependencies = [
3656
+ "windows-implement",
3657
+ "windows-interface",
3658
+ "windows-link 0.1.3",
3659
+ "windows-result 0.3.4",
3660
+ "windows-strings 0.4.2",
3661
+ ]
3662
+
3663
+ [[package]]
3664
+ name = "windows-core"
3665
+ version = "0.62.2"
3666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3667
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3668
+ dependencies = [
3669
+ "windows-implement",
3670
+ "windows-interface",
3671
+ "windows-link 0.2.1",
3672
+ "windows-result 0.4.1",
3673
+ "windows-strings 0.5.1",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "windows-future"
3678
+ version = "0.2.1"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
3681
+ dependencies = [
3682
+ "windows-core 0.61.2",
3683
+ "windows-link 0.1.3",
3684
+ "windows-threading",
3685
+ ]
3686
+
3687
+ [[package]]
3688
+ name = "windows-implement"
3689
+ version = "0.60.2"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3692
+ dependencies = [
3693
+ "proc-macro2",
3694
+ "quote",
3695
+ "syn",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "windows-interface"
3700
+ version = "0.59.3"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3703
+ dependencies = [
3704
+ "proc-macro2",
3705
+ "quote",
3706
+ "syn",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "windows-link"
3711
+ version = "0.1.3"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3714
+
3715
+ [[package]]
3716
+ name = "windows-link"
3717
+ version = "0.2.1"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3720
+
3721
+ [[package]]
3722
+ name = "windows-numerics"
3723
+ version = "0.2.0"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
3726
+ dependencies = [
3727
+ "windows-core 0.61.2",
3728
+ "windows-link 0.1.3",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "windows-result"
3733
+ version = "0.3.4"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3736
+ dependencies = [
3737
+ "windows-link 0.1.3",
3738
+ ]
3739
+
3740
+ [[package]]
3741
+ name = "windows-result"
3742
+ version = "0.4.1"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3745
+ dependencies = [
3746
+ "windows-link 0.2.1",
3747
+ ]
3748
+
3749
+ [[package]]
3750
+ name = "windows-strings"
3751
+ version = "0.4.2"
3752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3753
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3754
+ dependencies = [
3755
+ "windows-link 0.1.3",
3756
+ ]
3757
+
3758
+ [[package]]
3759
+ name = "windows-strings"
3760
+ version = "0.5.1"
3761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3762
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3763
+ dependencies = [
3764
+ "windows-link 0.2.1",
3765
+ ]
3766
+
3767
+ [[package]]
3768
+ name = "windows-sys"
3769
+ version = "0.52.0"
3770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3771
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3772
+ dependencies = [
3773
+ "windows-targets",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "windows-sys"
3778
+ version = "0.59.0"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3781
+ dependencies = [
3782
+ "windows-targets",
3783
+ ]
3784
+
3785
+ [[package]]
3786
+ name = "windows-sys"
3787
+ version = "0.61.2"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3790
+ dependencies = [
3791
+ "windows-link 0.2.1",
3792
+ ]
3793
+
3794
+ [[package]]
3795
+ name = "windows-targets"
3796
+ version = "0.52.6"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3799
+ dependencies = [
3800
+ "windows_aarch64_gnullvm",
3801
+ "windows_aarch64_msvc",
3802
+ "windows_i686_gnu",
3803
+ "windows_i686_gnullvm",
3804
+ "windows_i686_msvc",
3805
+ "windows_x86_64_gnu",
3806
+ "windows_x86_64_gnullvm",
3807
+ "windows_x86_64_msvc",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "windows-threading"
3812
+ version = "0.1.0"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
3815
+ dependencies = [
3816
+ "windows-link 0.1.3",
3817
+ ]
3818
+
3819
+ [[package]]
3820
+ name = "windows_aarch64_gnullvm"
3821
+ version = "0.52.6"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3824
+
3825
+ [[package]]
3826
+ name = "windows_aarch64_msvc"
3827
+ version = "0.52.6"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3830
+
3831
+ [[package]]
3832
+ name = "windows_i686_gnu"
3833
+ version = "0.52.6"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3836
+
3837
+ [[package]]
3838
+ name = "windows_i686_gnullvm"
3839
+ version = "0.52.6"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3842
+
3843
+ [[package]]
3844
+ name = "windows_i686_msvc"
3845
+ version = "0.52.6"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3848
+
3849
+ [[package]]
3850
+ name = "windows_x86_64_gnu"
3851
+ version = "0.52.6"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3854
+
3855
+ [[package]]
3856
+ name = "windows_x86_64_gnullvm"
3857
+ version = "0.52.6"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3860
+
3861
+ [[package]]
3862
+ name = "windows_x86_64_msvc"
3863
+ version = "0.52.6"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3866
+
3867
+ [[package]]
3868
+ name = "wit-bindgen"
3869
+ version = "0.46.0"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3872
+
3873
+ [[package]]
3874
+ name = "writeable"
3875
+ version = "0.6.3"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3878
+
3879
+ [[package]]
3880
+ name = "xxhash-rust"
3881
+ version = "0.8.16"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "4d93c89cdc2d3a63c3ec48ffe926931bdc069eafa8e4402fe6d8f790c9d1e576"
3884
+
3885
+ [[package]]
3886
+ name = "yoke"
3887
+ version = "0.8.3"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3890
+ dependencies = [
3891
+ "stable_deref_trait",
3892
+ "yoke-derive",
3893
+ "zerofrom",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "yoke-derive"
3898
+ version = "0.8.2"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3901
+ dependencies = [
3902
+ "proc-macro2",
3903
+ "quote",
3904
+ "syn",
3905
+ "synstructure",
3906
+ ]
3907
+
3908
+ [[package]]
3909
+ name = "zerocopy"
3910
+ version = "0.8.54"
3911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3912
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
3913
+ dependencies = [
3914
+ "zerocopy-derive",
3915
+ ]
3916
+
3917
+ [[package]]
3918
+ name = "zerocopy-derive"
3919
+ version = "0.8.54"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
3922
+ dependencies = [
3923
+ "proc-macro2",
3924
+ "quote",
3925
+ "syn",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "zerofrom"
3930
+ version = "0.1.8"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3933
+ dependencies = [
3934
+ "zerofrom-derive",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "zerofrom-derive"
3939
+ version = "0.1.7"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3942
+ dependencies = [
3943
+ "proc-macro2",
3944
+ "quote",
3945
+ "syn",
3946
+ "synstructure",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "zeroize"
3951
+ version = "1.9.0"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3954
+
3955
+ [[package]]
3956
+ name = "zerotrie"
3957
+ version = "0.2.4"
3958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3959
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3960
+ dependencies = [
3961
+ "displaydoc",
3962
+ "yoke",
3963
+ "zerofrom",
3964
+ ]
3965
+
3966
+ [[package]]
3967
+ name = "zerovec"
3968
+ version = "0.11.6"
3969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3970
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3971
+ dependencies = [
3972
+ "yoke",
3973
+ "zerofrom",
3974
+ "zerovec-derive",
3975
+ ]
3976
+
3977
+ [[package]]
3978
+ name = "zerovec-derive"
3979
+ version = "0.11.3"
3980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3981
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3982
+ dependencies = [
3983
+ "proc-macro2",
3984
+ "quote",
3985
+ "syn",
3986
+ ]
3987
+
3988
+ [[package]]
3989
+ name = "zmij"
3990
+ version = "1.0.23"
3991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3992
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
3993
+
3994
+ [[package]]
3995
+ name = "zstd"
3996
+ version = "0.13.3"
3997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3998
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3999
+ dependencies = [
4000
+ "zstd-safe",
4001
+ ]
4002
+
4003
+ [[package]]
4004
+ name = "zstd-safe"
4005
+ version = "7.2.4"
4006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4007
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4008
+ dependencies = [
4009
+ "zstd-sys",
4010
+ ]
4011
+
4012
+ [[package]]
4013
+ name = "zstd-sys"
4014
+ version = "2.0.16+zstd.1.5.7"
4015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4016
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4017
+ dependencies = [
4018
+ "cc",
4019
+ "pkg-config",
4020
+ ]