peppy-sage 0.1.15__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.

Potentially problematic release.


This version of peppy-sage might be problematic. Click here for more details.

Files changed (46) hide show
  1. peppy_sage-0.1.15/Cargo.lock +3615 -0
  2. peppy_sage-0.1.15/Cargo.toml +2 -0
  3. peppy_sage-0.1.15/PKG-INFO +10 -0
  4. peppy_sage-0.1.15/peppy_sage/Cargo.toml +25 -0
  5. peppy_sage-0.1.15/peppy_sage/python/peppy_sage/__init__.py +55 -0
  6. peppy_sage-0.1.15/peppy_sage/python/peppy_sage/core.py +234 -0
  7. peppy_sage-0.1.15/peppy_sage/python/peppy_sage/indexing.py +177 -0
  8. peppy_sage-0.1.15/peppy_sage/python/peppy_sage/scoring.py +60 -0
  9. peppy_sage-0.1.15/peppy_sage/src/index_logic.rs +759 -0
  10. peppy_sage-0.1.15/peppy_sage/src/lib.rs +1466 -0
  11. peppy_sage-0.1.15/peppy_sage/src/scoring_logic.rs +56 -0
  12. peppy_sage-0.1.15/peppy_sage/tests/python_library_test_search.py +145 -0
  13. peppy_sage-0.1.15/peppy_sage/tests/python_test_search.py +132 -0
  14. peppy_sage-0.1.15/peppy_sage/tests/test_search.py +138 -0
  15. peppy_sage-0.1.15/peppy_sage/tests/trimmed_lib.tsv +28 -0
  16. peppy_sage-0.1.15/pyproject.toml +24 -0
  17. peppy_sage-0.1.15/python/peppy_sage/__init__.py +55 -0
  18. peppy_sage-0.1.15/python/peppy_sage/core.py +234 -0
  19. peppy_sage-0.1.15/python/peppy_sage/indexing.py +177 -0
  20. peppy_sage-0.1.15/python/peppy_sage/scoring.py +60 -0
  21. peppy_sage-0.1.15/sage_core/Cargo.toml +23 -0
  22. peppy_sage-0.1.15/sage_core/src/database.rs +695 -0
  23. peppy_sage-0.1.15/sage_core/src/enzyme.rs +819 -0
  24. peppy_sage-0.1.15/sage_core/src/fasta.rs +90 -0
  25. peppy_sage-0.1.15/sage_core/src/fdr.rs +242 -0
  26. peppy_sage-0.1.15/sage_core/src/heap.rs +101 -0
  27. peppy_sage-0.1.15/sage_core/src/ion_series.rs +329 -0
  28. peppy_sage-0.1.15/sage_core/src/isotopes.rs +66 -0
  29. peppy_sage-0.1.15/sage_core/src/lfq.rs +699 -0
  30. peppy_sage-0.1.15/sage_core/src/lib.rs +15 -0
  31. peppy_sage-0.1.15/sage_core/src/mass.rs +158 -0
  32. peppy_sage-0.1.15/sage_core/src/ml/gauss.rs +165 -0
  33. peppy_sage-0.1.15/sage_core/src/ml/kde.rs +169 -0
  34. peppy_sage-0.1.15/sage_core/src/ml/linear_discriminant.rs +284 -0
  35. peppy_sage-0.1.15/sage_core/src/ml/matrix.rs +460 -0
  36. peppy_sage-0.1.15/sage_core/src/ml/mobility_model.rs +295 -0
  37. peppy_sage-0.1.15/sage_core/src/ml/mod.rs +31 -0
  38. peppy_sage-0.1.15/sage_core/src/ml/qvalue.rs +36 -0
  39. peppy_sage-0.1.15/sage_core/src/ml/retention_alignment.rs +173 -0
  40. peppy_sage-0.1.15/sage_core/src/ml/retention_model.rs +118 -0
  41. peppy_sage-0.1.15/sage_core/src/modification.rs +180 -0
  42. peppy_sage-0.1.15/sage_core/src/peptide.rs +721 -0
  43. peppy_sage-0.1.15/sage_core/src/scoring.rs +913 -0
  44. peppy_sage-0.1.15/sage_core/src/spectrum.rs +591 -0
  45. peppy_sage-0.1.15/sage_core/src/tmt.rs +344 -0
  46. peppy_sage-0.1.15/sage_core/tests/integration.rs +70 -0
@@ -0,0 +1,3615 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "ar_archive_writer"
37
+ version = "0.2.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
40
+ dependencies = [
41
+ "object",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "argminmax"
46
+ version = "0.6.3"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
49
+ dependencies = [
50
+ "num-traits",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "array-init-cursor"
55
+ version = "0.2.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
58
+
59
+ [[package]]
60
+ name = "arrayref"
61
+ version = "0.3.9"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
64
+
65
+ [[package]]
66
+ name = "arrayvec"
67
+ version = "0.7.6"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
70
+
71
+ [[package]]
72
+ name = "async-channel"
73
+ version = "2.5.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
76
+ dependencies = [
77
+ "concurrent-queue",
78
+ "event-listener-strategy",
79
+ "futures-core",
80
+ "pin-project-lite",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "async-stream"
85
+ version = "0.3.6"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
88
+ dependencies = [
89
+ "async-stream-impl",
90
+ "futures-core",
91
+ "pin-project-lite",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "async-stream-impl"
96
+ version = "0.3.6"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
99
+ dependencies = [
100
+ "proc-macro2",
101
+ "quote",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "async-trait"
107
+ version = "0.1.89"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "quote",
113
+ "syn",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "atoi_simd"
118
+ version = "0.16.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
121
+ dependencies = [
122
+ "debug_unsafe",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "atomic-waker"
127
+ version = "1.1.2"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
130
+
131
+ [[package]]
132
+ name = "autocfg"
133
+ version = "1.5.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
136
+
137
+ [[package]]
138
+ name = "base64"
139
+ version = "0.22.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
142
+
143
+ [[package]]
144
+ name = "bincode"
145
+ version = "2.0.1"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
148
+ dependencies = [
149
+ "bincode_derive",
150
+ "serde",
151
+ "unty",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "bincode_derive"
156
+ version = "2.0.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
159
+ dependencies = [
160
+ "virtue",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "bitflags"
165
+ version = "2.10.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
168
+ dependencies = [
169
+ "serde_core",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "blake3"
174
+ version = "1.8.2"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
177
+ dependencies = [
178
+ "arrayref",
179
+ "arrayvec",
180
+ "cc",
181
+ "cfg-if",
182
+ "constant_time_eq",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "block-buffer"
187
+ version = "0.10.4"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
190
+ dependencies = [
191
+ "generic-array",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "boxcar"
196
+ version = "0.2.14"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
199
+
200
+ [[package]]
201
+ name = "bumpalo"
202
+ version = "3.19.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
205
+
206
+ [[package]]
207
+ name = "bytemuck"
208
+ version = "1.24.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
211
+ dependencies = [
212
+ "bytemuck_derive",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "bytemuck_derive"
217
+ version = "1.10.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
220
+ dependencies = [
221
+ "proc-macro2",
222
+ "quote",
223
+ "syn",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "byteorder"
228
+ version = "1.5.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
231
+
232
+ [[package]]
233
+ name = "bytes"
234
+ version = "1.11.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
237
+ dependencies = [
238
+ "serde",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "castaway"
243
+ version = "0.2.4"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
246
+ dependencies = [
247
+ "rustversion",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "cc"
252
+ version = "1.2.49"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
255
+ dependencies = [
256
+ "find-msvc-tools",
257
+ "jobserver",
258
+ "libc",
259
+ "shlex",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "cfg-if"
264
+ version = "1.0.4"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
267
+
268
+ [[package]]
269
+ name = "cfg_aliases"
270
+ version = "0.2.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
273
+
274
+ [[package]]
275
+ name = "chrono"
276
+ version = "0.4.42"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
279
+ dependencies = [
280
+ "iana-time-zone",
281
+ "num-traits",
282
+ "serde",
283
+ "windows-link",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "chrono-tz"
288
+ version = "0.10.4"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
291
+ dependencies = [
292
+ "chrono",
293
+ "phf",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "comfy-table"
298
+ version = "7.2.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
301
+ dependencies = [
302
+ "crossterm",
303
+ "unicode-segmentation",
304
+ "unicode-width",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "compact_str"
309
+ version = "0.9.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
312
+ dependencies = [
313
+ "castaway",
314
+ "cfg-if",
315
+ "itoa",
316
+ "rustversion",
317
+ "ryu",
318
+ "serde",
319
+ "static_assertions",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "concurrent-queue"
324
+ version = "2.5.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
327
+ dependencies = [
328
+ "crossbeam-utils",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "constant_time_eq"
333
+ version = "0.3.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
336
+
337
+ [[package]]
338
+ name = "core-foundation"
339
+ version = "0.10.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
342
+ dependencies = [
343
+ "core-foundation-sys",
344
+ "libc",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "core-foundation-sys"
349
+ version = "0.8.7"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
352
+
353
+ [[package]]
354
+ name = "cpufeatures"
355
+ version = "0.2.17"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
358
+ dependencies = [
359
+ "libc",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "crc32fast"
364
+ version = "1.5.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
367
+ dependencies = [
368
+ "cfg-if",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "crossbeam-channel"
373
+ version = "0.5.15"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
376
+ dependencies = [
377
+ "crossbeam-utils",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "crossbeam-deque"
382
+ version = "0.8.6"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
385
+ dependencies = [
386
+ "crossbeam-epoch",
387
+ "crossbeam-utils",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "crossbeam-epoch"
392
+ version = "0.9.18"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
395
+ dependencies = [
396
+ "crossbeam-utils",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "crossbeam-queue"
401
+ version = "0.3.12"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
404
+ dependencies = [
405
+ "crossbeam-utils",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "crossbeam-utils"
410
+ version = "0.8.21"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
413
+
414
+ [[package]]
415
+ name = "crossterm"
416
+ version = "0.29.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
419
+ dependencies = [
420
+ "bitflags",
421
+ "crossterm_winapi",
422
+ "document-features",
423
+ "parking_lot",
424
+ "rustix",
425
+ "winapi",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "crossterm_winapi"
430
+ version = "0.9.1"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
433
+ dependencies = [
434
+ "winapi",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "crypto-common"
439
+ version = "0.1.7"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
442
+ dependencies = [
443
+ "generic-array",
444
+ "typenum",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "dashmap"
449
+ version = "5.5.3"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
452
+ dependencies = [
453
+ "cfg-if",
454
+ "hashbrown 0.14.5",
455
+ "lock_api",
456
+ "once_cell",
457
+ "parking_lot_core",
458
+ "rayon",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "debug_unsafe"
463
+ version = "0.1.3"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
466
+
467
+ [[package]]
468
+ name = "digest"
469
+ version = "0.10.7"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
472
+ dependencies = [
473
+ "block-buffer",
474
+ "crypto-common",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "displaydoc"
479
+ version = "0.2.5"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
482
+ dependencies = [
483
+ "proc-macro2",
484
+ "quote",
485
+ "syn",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "document-features"
490
+ version = "0.2.12"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
493
+ dependencies = [
494
+ "litrs",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "dyn-clone"
499
+ version = "1.0.20"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
502
+
503
+ [[package]]
504
+ name = "either"
505
+ version = "1.15.0"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
508
+
509
+ [[package]]
510
+ name = "env_logger"
511
+ version = "0.8.4"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
514
+ dependencies = [
515
+ "log",
516
+ "regex",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "equivalent"
521
+ version = "1.0.2"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
524
+
525
+ [[package]]
526
+ name = "errno"
527
+ version = "0.3.14"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
530
+ dependencies = [
531
+ "libc",
532
+ "windows-sys 0.61.2",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "ethnum"
537
+ version = "1.5.2"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
540
+
541
+ [[package]]
542
+ name = "event-listener"
543
+ version = "5.4.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
546
+ dependencies = [
547
+ "concurrent-queue",
548
+ "parking",
549
+ "pin-project-lite",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "event-listener-strategy"
554
+ version = "0.5.4"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
557
+ dependencies = [
558
+ "event-listener",
559
+ "pin-project-lite",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "fallible-streaming-iterator"
564
+ version = "0.1.9"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
567
+
568
+ [[package]]
569
+ name = "fast-float2"
570
+ version = "0.2.3"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
573
+
574
+ [[package]]
575
+ name = "find-msvc-tools"
576
+ version = "0.1.5"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
579
+
580
+ [[package]]
581
+ name = "flate2"
582
+ version = "1.1.5"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
585
+ dependencies = [
586
+ "crc32fast",
587
+ "miniz_oxide",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "fnv"
592
+ version = "1.0.7"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
595
+
596
+ [[package]]
597
+ name = "foldhash"
598
+ version = "0.1.5"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
601
+
602
+ [[package]]
603
+ name = "foldhash"
604
+ version = "0.2.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
607
+
608
+ [[package]]
609
+ name = "form_urlencoded"
610
+ version = "1.2.2"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
613
+ dependencies = [
614
+ "percent-encoding",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "fs4"
619
+ version = "0.13.1"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
622
+ dependencies = [
623
+ "rustix",
624
+ "windows-sys 0.59.0",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "futures"
629
+ version = "0.3.31"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
632
+ dependencies = [
633
+ "futures-channel",
634
+ "futures-core",
635
+ "futures-executor",
636
+ "futures-io",
637
+ "futures-sink",
638
+ "futures-task",
639
+ "futures-util",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "futures-channel"
644
+ version = "0.3.31"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
647
+ dependencies = [
648
+ "futures-core",
649
+ "futures-sink",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "futures-core"
654
+ version = "0.3.31"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
657
+
658
+ [[package]]
659
+ name = "futures-executor"
660
+ version = "0.3.31"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
663
+ dependencies = [
664
+ "futures-core",
665
+ "futures-task",
666
+ "futures-util",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "futures-io"
671
+ version = "0.3.31"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
674
+
675
+ [[package]]
676
+ name = "futures-macro"
677
+ version = "0.3.31"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
680
+ dependencies = [
681
+ "proc-macro2",
682
+ "quote",
683
+ "syn",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "futures-sink"
688
+ version = "0.3.31"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
691
+
692
+ [[package]]
693
+ name = "futures-task"
694
+ version = "0.3.31"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
697
+
698
+ [[package]]
699
+ name = "futures-util"
700
+ version = "0.3.31"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
703
+ dependencies = [
704
+ "futures-channel",
705
+ "futures-core",
706
+ "futures-io",
707
+ "futures-macro",
708
+ "futures-sink",
709
+ "futures-task",
710
+ "memchr",
711
+ "pin-project-lite",
712
+ "pin-utils",
713
+ "slab",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "generic-array"
718
+ version = "0.14.7"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
721
+ dependencies = [
722
+ "typenum",
723
+ "version_check",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "getrandom"
728
+ version = "0.2.16"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
731
+ dependencies = [
732
+ "cfg-if",
733
+ "js-sys",
734
+ "libc",
735
+ "wasi",
736
+ "wasm-bindgen",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "getrandom"
741
+ version = "0.3.4"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
744
+ dependencies = [
745
+ "cfg-if",
746
+ "js-sys",
747
+ "libc",
748
+ "r-efi",
749
+ "wasip2",
750
+ "wasm-bindgen",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "glob"
755
+ version = "0.3.3"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
758
+
759
+ [[package]]
760
+ name = "h2"
761
+ version = "0.4.12"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
764
+ dependencies = [
765
+ "atomic-waker",
766
+ "bytes",
767
+ "fnv",
768
+ "futures-core",
769
+ "futures-sink",
770
+ "http",
771
+ "indexmap",
772
+ "slab",
773
+ "tokio",
774
+ "tokio-util",
775
+ "tracing",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "hashbrown"
780
+ version = "0.14.5"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
783
+
784
+ [[package]]
785
+ name = "hashbrown"
786
+ version = "0.15.5"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
789
+ dependencies = [
790
+ "allocator-api2",
791
+ "equivalent",
792
+ "foldhash 0.1.5",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "hashbrown"
797
+ version = "0.16.1"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
800
+ dependencies = [
801
+ "allocator-api2",
802
+ "equivalent",
803
+ "foldhash 0.2.0",
804
+ "rayon",
805
+ "serde",
806
+ "serde_core",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "heck"
811
+ version = "0.5.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
814
+
815
+ [[package]]
816
+ name = "hex"
817
+ version = "0.4.3"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
820
+
821
+ [[package]]
822
+ name = "home"
823
+ version = "0.5.12"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
826
+ dependencies = [
827
+ "windows-sys 0.61.2",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "http"
832
+ version = "1.4.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
835
+ dependencies = [
836
+ "bytes",
837
+ "itoa",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "http-body"
842
+ version = "1.0.1"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
845
+ dependencies = [
846
+ "bytes",
847
+ "http",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "http-body-util"
852
+ version = "0.1.3"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
855
+ dependencies = [
856
+ "bytes",
857
+ "futures-core",
858
+ "http",
859
+ "http-body",
860
+ "pin-project-lite",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "httparse"
865
+ version = "1.10.1"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
868
+
869
+ [[package]]
870
+ name = "humantime"
871
+ version = "2.3.0"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
874
+
875
+ [[package]]
876
+ name = "hyper"
877
+ version = "1.8.1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
880
+ dependencies = [
881
+ "atomic-waker",
882
+ "bytes",
883
+ "futures-channel",
884
+ "futures-core",
885
+ "h2",
886
+ "http",
887
+ "http-body",
888
+ "httparse",
889
+ "itoa",
890
+ "pin-project-lite",
891
+ "pin-utils",
892
+ "smallvec",
893
+ "tokio",
894
+ "want",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "hyper-rustls"
899
+ version = "0.27.7"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
902
+ dependencies = [
903
+ "http",
904
+ "hyper",
905
+ "hyper-util",
906
+ "rustls",
907
+ "rustls-native-certs",
908
+ "rustls-pki-types",
909
+ "tokio",
910
+ "tokio-rustls",
911
+ "tower-service",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "hyper-util"
916
+ version = "0.1.19"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
919
+ dependencies = [
920
+ "base64",
921
+ "bytes",
922
+ "futures-channel",
923
+ "futures-core",
924
+ "futures-util",
925
+ "http",
926
+ "http-body",
927
+ "hyper",
928
+ "ipnet",
929
+ "libc",
930
+ "percent-encoding",
931
+ "pin-project-lite",
932
+ "socket2",
933
+ "tokio",
934
+ "tower-service",
935
+ "tracing",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "iana-time-zone"
940
+ version = "0.1.64"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
943
+ dependencies = [
944
+ "android_system_properties",
945
+ "core-foundation-sys",
946
+ "iana-time-zone-haiku",
947
+ "js-sys",
948
+ "log",
949
+ "wasm-bindgen",
950
+ "windows-core",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "iana-time-zone-haiku"
955
+ version = "0.1.2"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
958
+ dependencies = [
959
+ "cc",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "icu_collections"
964
+ version = "2.1.1"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
967
+ dependencies = [
968
+ "displaydoc",
969
+ "potential_utf",
970
+ "yoke",
971
+ "zerofrom",
972
+ "zerovec",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "icu_locale_core"
977
+ version = "2.1.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
980
+ dependencies = [
981
+ "displaydoc",
982
+ "litemap",
983
+ "tinystr",
984
+ "writeable",
985
+ "zerovec",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "icu_normalizer"
990
+ version = "2.1.1"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
993
+ dependencies = [
994
+ "icu_collections",
995
+ "icu_normalizer_data",
996
+ "icu_properties",
997
+ "icu_provider",
998
+ "smallvec",
999
+ "zerovec",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "icu_normalizer_data"
1004
+ version = "2.1.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1007
+
1008
+ [[package]]
1009
+ name = "icu_properties"
1010
+ version = "2.1.2"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1013
+ dependencies = [
1014
+ "icu_collections",
1015
+ "icu_locale_core",
1016
+ "icu_properties_data",
1017
+ "icu_provider",
1018
+ "zerotrie",
1019
+ "zerovec",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "icu_properties_data"
1024
+ version = "2.1.2"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1027
+
1028
+ [[package]]
1029
+ name = "icu_provider"
1030
+ version = "2.1.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1033
+ dependencies = [
1034
+ "displaydoc",
1035
+ "icu_locale_core",
1036
+ "writeable",
1037
+ "yoke",
1038
+ "zerofrom",
1039
+ "zerotrie",
1040
+ "zerovec",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "idna"
1045
+ version = "1.1.0"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1048
+ dependencies = [
1049
+ "idna_adapter",
1050
+ "smallvec",
1051
+ "utf8_iter",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "idna_adapter"
1056
+ version = "1.2.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1059
+ dependencies = [
1060
+ "icu_normalizer",
1061
+ "icu_properties",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "indexmap"
1066
+ version = "2.12.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1069
+ dependencies = [
1070
+ "equivalent",
1071
+ "hashbrown 0.16.1",
1072
+ "serde",
1073
+ "serde_core",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "indoc"
1078
+ version = "2.0.7"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1081
+ dependencies = [
1082
+ "rustversion",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "ipnet"
1087
+ version = "2.11.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1090
+
1091
+ [[package]]
1092
+ name = "iri-string"
1093
+ version = "0.7.9"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1096
+ dependencies = [
1097
+ "memchr",
1098
+ "serde",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "itertools"
1103
+ version = "0.10.5"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1106
+ dependencies = [
1107
+ "either",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "itertools"
1112
+ version = "0.14.0"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1115
+ dependencies = [
1116
+ "either",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "itoa"
1121
+ version = "1.0.15"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1124
+
1125
+ [[package]]
1126
+ name = "jobserver"
1127
+ version = "0.1.34"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1130
+ dependencies = [
1131
+ "getrandom 0.3.4",
1132
+ "libc",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "js-sys"
1137
+ version = "0.3.83"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1140
+ dependencies = [
1141
+ "once_cell",
1142
+ "wasm-bindgen",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "libc"
1147
+ version = "0.2.178"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1150
+
1151
+ [[package]]
1152
+ name = "libm"
1153
+ version = "0.2.15"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1156
+
1157
+ [[package]]
1158
+ name = "linux-raw-sys"
1159
+ version = "0.11.0"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1162
+
1163
+ [[package]]
1164
+ name = "litemap"
1165
+ version = "0.8.1"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1168
+
1169
+ [[package]]
1170
+ name = "litrs"
1171
+ version = "1.0.0"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1174
+
1175
+ [[package]]
1176
+ name = "lock_api"
1177
+ version = "0.4.14"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1180
+ dependencies = [
1181
+ "scopeguard",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "log"
1186
+ version = "0.4.29"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1189
+
1190
+ [[package]]
1191
+ name = "lru-slab"
1192
+ version = "0.1.2"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1195
+
1196
+ [[package]]
1197
+ name = "lz4"
1198
+ version = "1.28.1"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1201
+ dependencies = [
1202
+ "lz4-sys",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "lz4-sys"
1207
+ version = "1.11.1+lz4-1.10.0"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1210
+ dependencies = [
1211
+ "cc",
1212
+ "libc",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "memchr"
1217
+ version = "2.7.6"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1220
+
1221
+ [[package]]
1222
+ name = "memmap2"
1223
+ version = "0.9.9"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1226
+ dependencies = [
1227
+ "libc",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "memoffset"
1232
+ version = "0.9.1"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1235
+ dependencies = [
1236
+ "autocfg",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "miniz_oxide"
1241
+ version = "0.8.9"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1244
+ dependencies = [
1245
+ "adler2",
1246
+ "simd-adler32",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "mio"
1251
+ version = "1.1.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1254
+ dependencies = [
1255
+ "libc",
1256
+ "wasi",
1257
+ "windows-sys 0.61.2",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "now"
1262
+ version = "0.1.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1265
+ dependencies = [
1266
+ "chrono",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "num-traits"
1271
+ version = "0.2.19"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1274
+ dependencies = [
1275
+ "autocfg",
1276
+ "libm",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "object"
1281
+ version = "0.32.2"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1284
+ dependencies = [
1285
+ "memchr",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "object_store"
1290
+ version = "0.12.4"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
1293
+ dependencies = [
1294
+ "async-trait",
1295
+ "base64",
1296
+ "bytes",
1297
+ "chrono",
1298
+ "form_urlencoded",
1299
+ "futures",
1300
+ "http",
1301
+ "http-body-util",
1302
+ "humantime",
1303
+ "hyper",
1304
+ "itertools 0.14.0",
1305
+ "parking_lot",
1306
+ "percent-encoding",
1307
+ "quick-xml",
1308
+ "rand 0.9.2",
1309
+ "reqwest",
1310
+ "ring",
1311
+ "serde",
1312
+ "serde_json",
1313
+ "serde_urlencoded",
1314
+ "thiserror 2.0.17",
1315
+ "tokio",
1316
+ "tracing",
1317
+ "url",
1318
+ "walkdir",
1319
+ "wasm-bindgen-futures",
1320
+ "web-time",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "once_cell"
1325
+ version = "1.21.3"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1328
+
1329
+ [[package]]
1330
+ name = "openssl-probe"
1331
+ version = "0.1.6"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1334
+
1335
+ [[package]]
1336
+ name = "parking"
1337
+ version = "2.2.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1340
+
1341
+ [[package]]
1342
+ name = "parking_lot"
1343
+ version = "0.12.5"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1346
+ dependencies = [
1347
+ "lock_api",
1348
+ "parking_lot_core",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "parking_lot_core"
1353
+ version = "0.9.12"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1356
+ dependencies = [
1357
+ "cfg-if",
1358
+ "libc",
1359
+ "redox_syscall",
1360
+ "smallvec",
1361
+ "windows-link",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "paste"
1366
+ version = "1.0.15"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1369
+
1370
+ [[package]]
1371
+ name = "peppy_sage"
1372
+ version = "0.1.15"
1373
+ dependencies = [
1374
+ "dashmap",
1375
+ "fnv",
1376
+ "polars",
1377
+ "pyo3",
1378
+ "pyo3-polars",
1379
+ "rayon",
1380
+ "sage-core",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "percent-encoding"
1385
+ version = "2.3.2"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1388
+
1389
+ [[package]]
1390
+ name = "phf"
1391
+ version = "0.12.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1394
+ dependencies = [
1395
+ "phf_shared",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "phf_shared"
1400
+ version = "0.12.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1403
+ dependencies = [
1404
+ "siphasher",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "pin-project-lite"
1409
+ version = "0.2.16"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1412
+
1413
+ [[package]]
1414
+ name = "pin-utils"
1415
+ version = "0.1.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1418
+
1419
+ [[package]]
1420
+ name = "pkg-config"
1421
+ version = "0.3.32"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1424
+
1425
+ [[package]]
1426
+ name = "planus"
1427
+ version = "1.1.1"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1430
+ dependencies = [
1431
+ "array-init-cursor",
1432
+ "hashbrown 0.15.5",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "polars"
1437
+ version = "0.52.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "6bc9ea901050c1bb8747ee411bc7fbb390f3b399931e7484719512965132a248"
1440
+ dependencies = [
1441
+ "getrandom 0.2.16",
1442
+ "getrandom 0.3.4",
1443
+ "polars-arrow",
1444
+ "polars-compute",
1445
+ "polars-core",
1446
+ "polars-error",
1447
+ "polars-io",
1448
+ "polars-lazy",
1449
+ "polars-ops",
1450
+ "polars-parquet",
1451
+ "polars-sql",
1452
+ "polars-time",
1453
+ "polars-utils",
1454
+ "version_check",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "polars-arrow"
1459
+ version = "0.52.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "33d3fe43f8702cf7899ff3d516c2e5f7dc84ee6f6a3007e1a831a0ff87940704"
1462
+ dependencies = [
1463
+ "atoi_simd",
1464
+ "bitflags",
1465
+ "bytemuck",
1466
+ "chrono",
1467
+ "chrono-tz",
1468
+ "dyn-clone",
1469
+ "either",
1470
+ "ethnum",
1471
+ "getrandom 0.2.16",
1472
+ "getrandom 0.3.4",
1473
+ "hashbrown 0.16.1",
1474
+ "itoa",
1475
+ "lz4",
1476
+ "num-traits",
1477
+ "polars-arrow-format",
1478
+ "polars-error",
1479
+ "polars-schema",
1480
+ "polars-utils",
1481
+ "serde",
1482
+ "simdutf8",
1483
+ "streaming-iterator",
1484
+ "strum_macros",
1485
+ "version_check",
1486
+ "zstd",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "polars-arrow-format"
1491
+ version = "0.2.1"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1494
+ dependencies = [
1495
+ "planus",
1496
+ "serde",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "polars-compute"
1501
+ version = "0.52.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "d29cc7497378dee3a002f117e0b4e16b7cbe6c8ed3da16a0229c89294af7c3bf"
1504
+ dependencies = [
1505
+ "atoi_simd",
1506
+ "bytemuck",
1507
+ "chrono",
1508
+ "either",
1509
+ "fast-float2",
1510
+ "hashbrown 0.16.1",
1511
+ "itoa",
1512
+ "num-traits",
1513
+ "polars-arrow",
1514
+ "polars-error",
1515
+ "polars-utils",
1516
+ "rand 0.9.2",
1517
+ "ryu",
1518
+ "serde",
1519
+ "strength_reduce",
1520
+ "strum_macros",
1521
+ "version_check",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "polars-core"
1526
+ version = "0.52.0"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "48409b7440cb1a4aa84953fe3a4189dfbfb300a3298266a92a37363476641e40"
1529
+ dependencies = [
1530
+ "bitflags",
1531
+ "boxcar",
1532
+ "bytemuck",
1533
+ "chrono",
1534
+ "chrono-tz",
1535
+ "comfy-table",
1536
+ "either",
1537
+ "hashbrown 0.16.1",
1538
+ "indexmap",
1539
+ "itoa",
1540
+ "num-traits",
1541
+ "polars-arrow",
1542
+ "polars-compute",
1543
+ "polars-dtype",
1544
+ "polars-error",
1545
+ "polars-row",
1546
+ "polars-schema",
1547
+ "polars-utils",
1548
+ "rand 0.9.2",
1549
+ "rand_distr",
1550
+ "rayon",
1551
+ "regex",
1552
+ "serde",
1553
+ "serde_json",
1554
+ "strum_macros",
1555
+ "uuid",
1556
+ "version_check",
1557
+ "xxhash-rust",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "polars-dtype"
1562
+ version = "0.52.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "7007e9e8b7b657cbd339b65246af7e87f5756ee9a860119b9424ddffd2aaf133"
1565
+ dependencies = [
1566
+ "boxcar",
1567
+ "hashbrown 0.16.1",
1568
+ "polars-arrow",
1569
+ "polars-error",
1570
+ "polars-utils",
1571
+ "serde",
1572
+ "uuid",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "polars-error"
1577
+ version = "0.52.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "f9a6be22566c89f6405f553bfdb7c8a6cb20ec51b35f3172de9a25fa3e252d85"
1580
+ dependencies = [
1581
+ "object_store",
1582
+ "parking_lot",
1583
+ "polars-arrow-format",
1584
+ "pyo3",
1585
+ "regex",
1586
+ "signal-hook",
1587
+ "simdutf8",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "polars-expr"
1592
+ version = "0.52.0"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "6199a50d3e1afd0674fb009e340cbfb0010682b2387187a36328c00f3f2ca87b"
1595
+ dependencies = [
1596
+ "bitflags",
1597
+ "hashbrown 0.16.1",
1598
+ "num-traits",
1599
+ "polars-arrow",
1600
+ "polars-compute",
1601
+ "polars-core",
1602
+ "polars-io",
1603
+ "polars-ops",
1604
+ "polars-plan",
1605
+ "polars-row",
1606
+ "polars-time",
1607
+ "polars-utils",
1608
+ "rand 0.9.2",
1609
+ "rayon",
1610
+ "recursive",
1611
+ "regex",
1612
+ "version_check",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "polars-io"
1617
+ version = "0.52.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "be3714acdff87170141880a07f5d9233490d3bd5531c41898f6969d440feee11"
1620
+ dependencies = [
1621
+ "async-trait",
1622
+ "atoi_simd",
1623
+ "blake3",
1624
+ "bytes",
1625
+ "chrono",
1626
+ "fast-float2",
1627
+ "fs4",
1628
+ "futures",
1629
+ "glob",
1630
+ "hashbrown 0.16.1",
1631
+ "home",
1632
+ "itoa",
1633
+ "memchr",
1634
+ "memmap2",
1635
+ "num-traits",
1636
+ "object_store",
1637
+ "percent-encoding",
1638
+ "polars-arrow",
1639
+ "polars-compute",
1640
+ "polars-core",
1641
+ "polars-error",
1642
+ "polars-parquet",
1643
+ "polars-schema",
1644
+ "polars-time",
1645
+ "polars-utils",
1646
+ "rayon",
1647
+ "regex",
1648
+ "reqwest",
1649
+ "ryu",
1650
+ "serde",
1651
+ "serde_json",
1652
+ "simdutf8",
1653
+ "tokio",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "polars-lazy"
1658
+ version = "0.52.0"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "ea136c360d03aafe56e0233495e30044ce43639b8b0360a4a38e840233f048a1"
1661
+ dependencies = [
1662
+ "bitflags",
1663
+ "chrono",
1664
+ "either",
1665
+ "memchr",
1666
+ "polars-arrow",
1667
+ "polars-compute",
1668
+ "polars-core",
1669
+ "polars-expr",
1670
+ "polars-io",
1671
+ "polars-mem-engine",
1672
+ "polars-ops",
1673
+ "polars-plan",
1674
+ "polars-stream",
1675
+ "polars-time",
1676
+ "polars-utils",
1677
+ "rayon",
1678
+ "version_check",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "polars-mem-engine"
1683
+ version = "0.52.0"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "0f6e455ceb6e5aee7ed7d5c8944104e66992173e03a9c42f9670226318672249"
1686
+ dependencies = [
1687
+ "memmap2",
1688
+ "polars-arrow",
1689
+ "polars-core",
1690
+ "polars-error",
1691
+ "polars-expr",
1692
+ "polars-io",
1693
+ "polars-ops",
1694
+ "polars-plan",
1695
+ "polars-time",
1696
+ "polars-utils",
1697
+ "rayon",
1698
+ "recursive",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "polars-ops"
1703
+ version = "0.52.0"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "7b59c80a019ef0e6f09b4416d2647076a52839305c9eb11919e8298ec667f853"
1706
+ dependencies = [
1707
+ "argminmax",
1708
+ "base64",
1709
+ "bytemuck",
1710
+ "chrono",
1711
+ "chrono-tz",
1712
+ "either",
1713
+ "hashbrown 0.16.1",
1714
+ "hex",
1715
+ "indexmap",
1716
+ "libm",
1717
+ "memchr",
1718
+ "num-traits",
1719
+ "polars-arrow",
1720
+ "polars-compute",
1721
+ "polars-core",
1722
+ "polars-error",
1723
+ "polars-schema",
1724
+ "polars-utils",
1725
+ "rayon",
1726
+ "regex",
1727
+ "regex-syntax",
1728
+ "strum_macros",
1729
+ "unicode-normalization",
1730
+ "unicode-reverse",
1731
+ "version_check",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "polars-parquet"
1736
+ version = "0.52.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "93c2439d127c59e6bfc9d698419bdb45210068a6f501d44e6096429ad72c2eaa"
1739
+ dependencies = [
1740
+ "async-stream",
1741
+ "base64",
1742
+ "bytemuck",
1743
+ "ethnum",
1744
+ "futures",
1745
+ "hashbrown 0.16.1",
1746
+ "num-traits",
1747
+ "polars-arrow",
1748
+ "polars-compute",
1749
+ "polars-error",
1750
+ "polars-parquet-format",
1751
+ "polars-utils",
1752
+ "serde",
1753
+ "simdutf8",
1754
+ "streaming-decompression",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "polars-parquet-format"
1759
+ version = "0.1.0"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
1762
+ dependencies = [
1763
+ "async-trait",
1764
+ "futures",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "polars-plan"
1769
+ version = "0.52.0"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "65b4619f5c7e9b91f18611c9ed82ebeee4b10052160825c1316ecf4dbd4d97e6"
1772
+ dependencies = [
1773
+ "bitflags",
1774
+ "bytemuck",
1775
+ "bytes",
1776
+ "chrono",
1777
+ "chrono-tz",
1778
+ "either",
1779
+ "hashbrown 0.16.1",
1780
+ "memmap2",
1781
+ "num-traits",
1782
+ "percent-encoding",
1783
+ "polars-arrow",
1784
+ "polars-compute",
1785
+ "polars-core",
1786
+ "polars-error",
1787
+ "polars-io",
1788
+ "polars-ops",
1789
+ "polars-time",
1790
+ "polars-utils",
1791
+ "rayon",
1792
+ "recursive",
1793
+ "regex",
1794
+ "sha2",
1795
+ "slotmap",
1796
+ "strum_macros",
1797
+ "version_check",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "polars-row"
1802
+ version = "0.52.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "a18d232f25b83032e280a279a1f40beb8a6f8fc43907b13dc07b1c56f3b11eea"
1805
+ dependencies = [
1806
+ "bitflags",
1807
+ "bytemuck",
1808
+ "polars-arrow",
1809
+ "polars-compute",
1810
+ "polars-dtype",
1811
+ "polars-error",
1812
+ "polars-utils",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "polars-schema"
1817
+ version = "0.52.0"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "f73e21d429ae1c23f442b0220ccfe773a9734a44e997b5062a741842909d9441"
1820
+ dependencies = [
1821
+ "indexmap",
1822
+ "polars-error",
1823
+ "polars-utils",
1824
+ "serde",
1825
+ "version_check",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "polars-sql"
1830
+ version = "0.52.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "3e67ac1cbb0c972a57af3be12f19aa9803898863fe95c33cdd39df05f5738a75"
1833
+ dependencies = [
1834
+ "bitflags",
1835
+ "hex",
1836
+ "polars-core",
1837
+ "polars-error",
1838
+ "polars-lazy",
1839
+ "polars-ops",
1840
+ "polars-plan",
1841
+ "polars-time",
1842
+ "polars-utils",
1843
+ "rand 0.9.2",
1844
+ "regex",
1845
+ "serde",
1846
+ "sqlparser",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "polars-stream"
1851
+ version = "0.52.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "2ff19612074640a9d65e5928b7223db76ffee63e55b276f1e466d06719eb7362"
1854
+ dependencies = [
1855
+ "async-channel",
1856
+ "async-trait",
1857
+ "atomic-waker",
1858
+ "bitflags",
1859
+ "chrono-tz",
1860
+ "crossbeam-channel",
1861
+ "crossbeam-deque",
1862
+ "crossbeam-queue",
1863
+ "crossbeam-utils",
1864
+ "futures",
1865
+ "memmap2",
1866
+ "parking_lot",
1867
+ "percent-encoding",
1868
+ "pin-project-lite",
1869
+ "polars-arrow",
1870
+ "polars-compute",
1871
+ "polars-core",
1872
+ "polars-error",
1873
+ "polars-expr",
1874
+ "polars-io",
1875
+ "polars-mem-engine",
1876
+ "polars-ops",
1877
+ "polars-parquet",
1878
+ "polars-plan",
1879
+ "polars-time",
1880
+ "polars-utils",
1881
+ "rand 0.9.2",
1882
+ "rayon",
1883
+ "recursive",
1884
+ "slotmap",
1885
+ "tokio",
1886
+ "version_check",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "polars-time"
1891
+ version = "0.52.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "ddce7a9f81d5f47d981bcee4a8db004f9596bb51f0f4d9d93667a1a00d88166c"
1894
+ dependencies = [
1895
+ "atoi_simd",
1896
+ "bytemuck",
1897
+ "chrono",
1898
+ "chrono-tz",
1899
+ "now",
1900
+ "num-traits",
1901
+ "polars-arrow",
1902
+ "polars-compute",
1903
+ "polars-core",
1904
+ "polars-error",
1905
+ "polars-ops",
1906
+ "polars-utils",
1907
+ "rayon",
1908
+ "regex",
1909
+ "strum_macros",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "polars-utils"
1914
+ version = "0.52.0"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "667c1bc2d2313f934d711f6e3b58d8d9f80351d14ea60af936a26b7dfb06e309"
1917
+ dependencies = [
1918
+ "bincode",
1919
+ "bytemuck",
1920
+ "bytes",
1921
+ "compact_str",
1922
+ "either",
1923
+ "flate2",
1924
+ "foldhash 0.2.0",
1925
+ "hashbrown 0.16.1",
1926
+ "indexmap",
1927
+ "libc",
1928
+ "memmap2",
1929
+ "num-traits",
1930
+ "polars-error",
1931
+ "rand 0.9.2",
1932
+ "raw-cpuid",
1933
+ "rayon",
1934
+ "regex",
1935
+ "rmp-serde",
1936
+ "serde",
1937
+ "serde_json",
1938
+ "serde_stacker",
1939
+ "slotmap",
1940
+ "stacker",
1941
+ "uuid",
1942
+ "version_check",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "portable-atomic"
1947
+ version = "1.11.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1950
+
1951
+ [[package]]
1952
+ name = "potential_utf"
1953
+ version = "0.1.4"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1956
+ dependencies = [
1957
+ "zerovec",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "ppv-lite86"
1962
+ version = "0.2.21"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1965
+ dependencies = [
1966
+ "zerocopy",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "proc-macro2"
1971
+ version = "1.0.103"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1974
+ dependencies = [
1975
+ "unicode-ident",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "psm"
1980
+ version = "0.1.28"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
1983
+ dependencies = [
1984
+ "ar_archive_writer",
1985
+ "cc",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "pyo3"
1990
+ version = "0.26.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1993
+ dependencies = [
1994
+ "indoc",
1995
+ "libc",
1996
+ "memoffset",
1997
+ "once_cell",
1998
+ "portable-atomic",
1999
+ "pyo3-build-config",
2000
+ "pyo3-ffi",
2001
+ "pyo3-macros",
2002
+ "unindent",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "pyo3-build-config"
2007
+ version = "0.26.0"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
2010
+ dependencies = [
2011
+ "target-lexicon",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "pyo3-ffi"
2016
+ version = "0.26.0"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
2019
+ dependencies = [
2020
+ "libc",
2021
+ "pyo3-build-config",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "pyo3-macros"
2026
+ version = "0.26.0"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
2029
+ dependencies = [
2030
+ "proc-macro2",
2031
+ "pyo3-macros-backend",
2032
+ "quote",
2033
+ "syn",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "pyo3-macros-backend"
2038
+ version = "0.26.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
2041
+ dependencies = [
2042
+ "heck",
2043
+ "proc-macro2",
2044
+ "pyo3-build-config",
2045
+ "quote",
2046
+ "syn",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "pyo3-polars"
2051
+ version = "0.25.0"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "94a1e9d697dd76f39b269a5c2f2904469092c0ef6452f47caaf20879891a6a62"
2054
+ dependencies = [
2055
+ "libc",
2056
+ "once_cell",
2057
+ "polars",
2058
+ "polars-arrow",
2059
+ "polars-core",
2060
+ "polars-error",
2061
+ "pyo3",
2062
+ "thiserror 1.0.69",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "quick-xml"
2067
+ version = "0.38.4"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2070
+ dependencies = [
2071
+ "memchr",
2072
+ "serde",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "quickcheck"
2077
+ version = "1.0.3"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2080
+ dependencies = [
2081
+ "env_logger",
2082
+ "log",
2083
+ "rand 0.8.5",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "quickcheck_macros"
2088
+ version = "1.1.0"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "f71ee38b42f8459a88d3362be6f9b841ad2d5421844f61eb1c59c11bff3ac14a"
2091
+ dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "syn",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "quinn"
2099
+ version = "0.11.9"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2102
+ dependencies = [
2103
+ "bytes",
2104
+ "cfg_aliases",
2105
+ "pin-project-lite",
2106
+ "quinn-proto",
2107
+ "quinn-udp",
2108
+ "rustc-hash",
2109
+ "rustls",
2110
+ "socket2",
2111
+ "thiserror 2.0.17",
2112
+ "tokio",
2113
+ "tracing",
2114
+ "web-time",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "quinn-proto"
2119
+ version = "0.11.13"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2122
+ dependencies = [
2123
+ "bytes",
2124
+ "getrandom 0.3.4",
2125
+ "lru-slab",
2126
+ "rand 0.9.2",
2127
+ "ring",
2128
+ "rustc-hash",
2129
+ "rustls",
2130
+ "rustls-pki-types",
2131
+ "slab",
2132
+ "thiserror 2.0.17",
2133
+ "tinyvec",
2134
+ "tracing",
2135
+ "web-time",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "quinn-udp"
2140
+ version = "0.5.14"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2143
+ dependencies = [
2144
+ "cfg_aliases",
2145
+ "libc",
2146
+ "once_cell",
2147
+ "socket2",
2148
+ "tracing",
2149
+ "windows-sys 0.60.2",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "quote"
2154
+ version = "1.0.42"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2157
+ dependencies = [
2158
+ "proc-macro2",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "r-efi"
2163
+ version = "5.3.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2166
+
2167
+ [[package]]
2168
+ name = "rand"
2169
+ version = "0.8.5"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2172
+ dependencies = [
2173
+ "rand_core 0.6.4",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "rand"
2178
+ version = "0.9.2"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2181
+ dependencies = [
2182
+ "rand_chacha",
2183
+ "rand_core 0.9.3",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "rand_chacha"
2188
+ version = "0.9.0"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2191
+ dependencies = [
2192
+ "ppv-lite86",
2193
+ "rand_core 0.9.3",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "rand_core"
2198
+ version = "0.6.4"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2201
+ dependencies = [
2202
+ "getrandom 0.2.16",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "rand_core"
2207
+ version = "0.9.3"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2210
+ dependencies = [
2211
+ "getrandom 0.3.4",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "rand_distr"
2216
+ version = "0.5.1"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2219
+ dependencies = [
2220
+ "num-traits",
2221
+ "rand 0.9.2",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "raw-cpuid"
2226
+ version = "11.6.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2229
+ dependencies = [
2230
+ "bitflags",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "rayon"
2235
+ version = "1.11.0"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2238
+ dependencies = [
2239
+ "either",
2240
+ "rayon-core",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "rayon-core"
2245
+ version = "1.13.0"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2248
+ dependencies = [
2249
+ "crossbeam-deque",
2250
+ "crossbeam-utils",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "recursive"
2255
+ version = "0.1.1"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2258
+ dependencies = [
2259
+ "recursive-proc-macro-impl",
2260
+ "stacker",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "recursive-proc-macro-impl"
2265
+ version = "0.1.1"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2268
+ dependencies = [
2269
+ "quote",
2270
+ "syn",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "redox_syscall"
2275
+ version = "0.5.18"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2278
+ dependencies = [
2279
+ "bitflags",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "regex"
2284
+ version = "1.12.2"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2287
+ dependencies = [
2288
+ "aho-corasick",
2289
+ "memchr",
2290
+ "regex-automata",
2291
+ "regex-syntax",
2292
+ ]
2293
+
2294
+ [[package]]
2295
+ name = "regex-automata"
2296
+ version = "0.4.13"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2299
+ dependencies = [
2300
+ "aho-corasick",
2301
+ "memchr",
2302
+ "regex-syntax",
2303
+ ]
2304
+
2305
+ [[package]]
2306
+ name = "regex-syntax"
2307
+ version = "0.8.8"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2310
+
2311
+ [[package]]
2312
+ name = "reqwest"
2313
+ version = "0.12.26"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
2316
+ dependencies = [
2317
+ "base64",
2318
+ "bytes",
2319
+ "futures-core",
2320
+ "futures-util",
2321
+ "h2",
2322
+ "http",
2323
+ "http-body",
2324
+ "http-body-util",
2325
+ "hyper",
2326
+ "hyper-rustls",
2327
+ "hyper-util",
2328
+ "js-sys",
2329
+ "log",
2330
+ "percent-encoding",
2331
+ "pin-project-lite",
2332
+ "quinn",
2333
+ "rustls",
2334
+ "rustls-native-certs",
2335
+ "rustls-pki-types",
2336
+ "serde",
2337
+ "serde_json",
2338
+ "serde_urlencoded",
2339
+ "sync_wrapper",
2340
+ "tokio",
2341
+ "tokio-rustls",
2342
+ "tokio-util",
2343
+ "tower",
2344
+ "tower-http",
2345
+ "tower-service",
2346
+ "url",
2347
+ "wasm-bindgen",
2348
+ "wasm-bindgen-futures",
2349
+ "wasm-streams",
2350
+ "web-sys",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "ring"
2355
+ version = "0.17.14"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2358
+ dependencies = [
2359
+ "cc",
2360
+ "cfg-if",
2361
+ "getrandom 0.2.16",
2362
+ "libc",
2363
+ "untrusted",
2364
+ "windows-sys 0.52.0",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "rmp"
2369
+ version = "0.8.14"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2372
+ dependencies = [
2373
+ "byteorder",
2374
+ "num-traits",
2375
+ "paste",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "rmp-serde"
2380
+ version = "1.3.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2383
+ dependencies = [
2384
+ "byteorder",
2385
+ "rmp",
2386
+ "serde",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "rustc-hash"
2391
+ version = "2.1.1"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2394
+
2395
+ [[package]]
2396
+ name = "rustix"
2397
+ version = "1.1.2"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2400
+ dependencies = [
2401
+ "bitflags",
2402
+ "errno",
2403
+ "libc",
2404
+ "linux-raw-sys",
2405
+ "windows-sys 0.61.2",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "rustls"
2410
+ version = "0.23.35"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
2413
+ dependencies = [
2414
+ "once_cell",
2415
+ "ring",
2416
+ "rustls-pki-types",
2417
+ "rustls-webpki",
2418
+ "subtle",
2419
+ "zeroize",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "rustls-native-certs"
2424
+ version = "0.8.2"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
2427
+ dependencies = [
2428
+ "openssl-probe",
2429
+ "rustls-pki-types",
2430
+ "schannel",
2431
+ "security-framework",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "rustls-pki-types"
2436
+ version = "1.13.1"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
2439
+ dependencies = [
2440
+ "web-time",
2441
+ "zeroize",
2442
+ ]
2443
+
2444
+ [[package]]
2445
+ name = "rustls-webpki"
2446
+ version = "0.103.8"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2449
+ dependencies = [
2450
+ "ring",
2451
+ "rustls-pki-types",
2452
+ "untrusted",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "rustversion"
2457
+ version = "1.0.22"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2460
+
2461
+ [[package]]
2462
+ name = "ryu"
2463
+ version = "1.0.20"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2466
+
2467
+ [[package]]
2468
+ name = "sage-core"
2469
+ version = "0.15.0-beta.1"
2470
+ dependencies = [
2471
+ "dashmap",
2472
+ "fnv",
2473
+ "itertools 0.10.5",
2474
+ "log",
2475
+ "quickcheck",
2476
+ "quickcheck_macros",
2477
+ "rayon",
2478
+ "regex",
2479
+ "serde",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "same-file"
2484
+ version = "1.0.6"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2487
+ dependencies = [
2488
+ "winapi-util",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "schannel"
2493
+ version = "0.1.28"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2496
+ dependencies = [
2497
+ "windows-sys 0.61.2",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "scopeguard"
2502
+ version = "1.2.0"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2505
+
2506
+ [[package]]
2507
+ name = "security-framework"
2508
+ version = "3.5.1"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
2511
+ dependencies = [
2512
+ "bitflags",
2513
+ "core-foundation",
2514
+ "core-foundation-sys",
2515
+ "libc",
2516
+ "security-framework-sys",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "security-framework-sys"
2521
+ version = "2.15.0"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2524
+ dependencies = [
2525
+ "core-foundation-sys",
2526
+ "libc",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "serde"
2531
+ version = "1.0.228"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2534
+ dependencies = [
2535
+ "serde_core",
2536
+ "serde_derive",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "serde_core"
2541
+ version = "1.0.228"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2544
+ dependencies = [
2545
+ "serde_derive",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "serde_derive"
2550
+ version = "1.0.228"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2553
+ dependencies = [
2554
+ "proc-macro2",
2555
+ "quote",
2556
+ "syn",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "serde_json"
2561
+ version = "1.0.145"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2564
+ dependencies = [
2565
+ "itoa",
2566
+ "memchr",
2567
+ "ryu",
2568
+ "serde",
2569
+ "serde_core",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "serde_stacker"
2574
+ version = "0.1.14"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
2577
+ dependencies = [
2578
+ "serde",
2579
+ "serde_core",
2580
+ "stacker",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "serde_urlencoded"
2585
+ version = "0.7.1"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2588
+ dependencies = [
2589
+ "form_urlencoded",
2590
+ "itoa",
2591
+ "ryu",
2592
+ "serde",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "sha2"
2597
+ version = "0.10.9"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2600
+ dependencies = [
2601
+ "cfg-if",
2602
+ "cpufeatures",
2603
+ "digest",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "shlex"
2608
+ version = "1.3.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2611
+
2612
+ [[package]]
2613
+ name = "signal-hook"
2614
+ version = "0.3.18"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2617
+ dependencies = [
2618
+ "libc",
2619
+ "signal-hook-registry",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "signal-hook-registry"
2624
+ version = "1.4.7"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
2627
+ dependencies = [
2628
+ "libc",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "simd-adler32"
2633
+ version = "0.3.8"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2636
+
2637
+ [[package]]
2638
+ name = "simdutf8"
2639
+ version = "0.1.5"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2642
+
2643
+ [[package]]
2644
+ name = "siphasher"
2645
+ version = "1.0.1"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2648
+
2649
+ [[package]]
2650
+ name = "slab"
2651
+ version = "0.4.11"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2654
+
2655
+ [[package]]
2656
+ name = "slotmap"
2657
+ version = "1.1.1"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2660
+ dependencies = [
2661
+ "version_check",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "smallvec"
2666
+ version = "1.15.1"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2669
+
2670
+ [[package]]
2671
+ name = "socket2"
2672
+ version = "0.6.1"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2675
+ dependencies = [
2676
+ "libc",
2677
+ "windows-sys 0.60.2",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "sqlparser"
2682
+ version = "0.53.0"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
2685
+ dependencies = [
2686
+ "log",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "stable_deref_trait"
2691
+ version = "1.2.1"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2694
+
2695
+ [[package]]
2696
+ name = "stacker"
2697
+ version = "0.1.22"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
2700
+ dependencies = [
2701
+ "cc",
2702
+ "cfg-if",
2703
+ "libc",
2704
+ "psm",
2705
+ "windows-sys 0.59.0",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "static_assertions"
2710
+ version = "1.1.0"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2713
+
2714
+ [[package]]
2715
+ name = "streaming-decompression"
2716
+ version = "0.1.2"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
2719
+ dependencies = [
2720
+ "fallible-streaming-iterator",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "streaming-iterator"
2725
+ version = "0.1.9"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
2728
+
2729
+ [[package]]
2730
+ name = "strength_reduce"
2731
+ version = "0.2.4"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2734
+
2735
+ [[package]]
2736
+ name = "strum_macros"
2737
+ version = "0.27.2"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2740
+ dependencies = [
2741
+ "heck",
2742
+ "proc-macro2",
2743
+ "quote",
2744
+ "syn",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "subtle"
2749
+ version = "2.6.1"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2752
+
2753
+ [[package]]
2754
+ name = "syn"
2755
+ version = "2.0.111"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2758
+ dependencies = [
2759
+ "proc-macro2",
2760
+ "quote",
2761
+ "unicode-ident",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "sync_wrapper"
2766
+ version = "1.0.2"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2769
+ dependencies = [
2770
+ "futures-core",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "synstructure"
2775
+ version = "0.13.2"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2778
+ dependencies = [
2779
+ "proc-macro2",
2780
+ "quote",
2781
+ "syn",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "target-lexicon"
2786
+ version = "0.13.3"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2789
+
2790
+ [[package]]
2791
+ name = "thiserror"
2792
+ version = "1.0.69"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2795
+ dependencies = [
2796
+ "thiserror-impl 1.0.69",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "thiserror"
2801
+ version = "2.0.17"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2804
+ dependencies = [
2805
+ "thiserror-impl 2.0.17",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "thiserror-impl"
2810
+ version = "1.0.69"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2813
+ dependencies = [
2814
+ "proc-macro2",
2815
+ "quote",
2816
+ "syn",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "thiserror-impl"
2821
+ version = "2.0.17"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2824
+ dependencies = [
2825
+ "proc-macro2",
2826
+ "quote",
2827
+ "syn",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "tinystr"
2832
+ version = "0.8.2"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2835
+ dependencies = [
2836
+ "displaydoc",
2837
+ "zerovec",
2838
+ ]
2839
+
2840
+ [[package]]
2841
+ name = "tinyvec"
2842
+ version = "1.10.0"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2845
+ dependencies = [
2846
+ "tinyvec_macros",
2847
+ ]
2848
+
2849
+ [[package]]
2850
+ name = "tinyvec_macros"
2851
+ version = "0.1.1"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2854
+
2855
+ [[package]]
2856
+ name = "tokio"
2857
+ version = "1.48.0"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2860
+ dependencies = [
2861
+ "bytes",
2862
+ "libc",
2863
+ "mio",
2864
+ "pin-project-lite",
2865
+ "socket2",
2866
+ "tokio-macros",
2867
+ "windows-sys 0.61.2",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "tokio-macros"
2872
+ version = "2.6.0"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2875
+ dependencies = [
2876
+ "proc-macro2",
2877
+ "quote",
2878
+ "syn",
2879
+ ]
2880
+
2881
+ [[package]]
2882
+ name = "tokio-rustls"
2883
+ version = "0.26.4"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2886
+ dependencies = [
2887
+ "rustls",
2888
+ "tokio",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "tokio-util"
2893
+ version = "0.7.17"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2896
+ dependencies = [
2897
+ "bytes",
2898
+ "futures-core",
2899
+ "futures-sink",
2900
+ "pin-project-lite",
2901
+ "tokio",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "tower"
2906
+ version = "0.5.2"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2909
+ dependencies = [
2910
+ "futures-core",
2911
+ "futures-util",
2912
+ "pin-project-lite",
2913
+ "sync_wrapper",
2914
+ "tokio",
2915
+ "tower-layer",
2916
+ "tower-service",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "tower-http"
2921
+ version = "0.6.8"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2924
+ dependencies = [
2925
+ "bitflags",
2926
+ "bytes",
2927
+ "futures-util",
2928
+ "http",
2929
+ "http-body",
2930
+ "iri-string",
2931
+ "pin-project-lite",
2932
+ "tower",
2933
+ "tower-layer",
2934
+ "tower-service",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "tower-layer"
2939
+ version = "0.3.3"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2942
+
2943
+ [[package]]
2944
+ name = "tower-service"
2945
+ version = "0.3.3"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2948
+
2949
+ [[package]]
2950
+ name = "tracing"
2951
+ version = "0.1.43"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
2954
+ dependencies = [
2955
+ "pin-project-lite",
2956
+ "tracing-attributes",
2957
+ "tracing-core",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "tracing-attributes"
2962
+ version = "0.1.31"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2965
+ dependencies = [
2966
+ "proc-macro2",
2967
+ "quote",
2968
+ "syn",
2969
+ ]
2970
+
2971
+ [[package]]
2972
+ name = "tracing-core"
2973
+ version = "0.1.35"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
2976
+ dependencies = [
2977
+ "once_cell",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "try-lock"
2982
+ version = "0.2.5"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2985
+
2986
+ [[package]]
2987
+ name = "typenum"
2988
+ version = "1.19.0"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2991
+
2992
+ [[package]]
2993
+ name = "unicode-ident"
2994
+ version = "1.0.22"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2997
+
2998
+ [[package]]
2999
+ name = "unicode-normalization"
3000
+ version = "0.1.25"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3003
+ dependencies = [
3004
+ "tinyvec",
3005
+ ]
3006
+
3007
+ [[package]]
3008
+ name = "unicode-reverse"
3009
+ version = "1.0.9"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3012
+ dependencies = [
3013
+ "unicode-segmentation",
3014
+ ]
3015
+
3016
+ [[package]]
3017
+ name = "unicode-segmentation"
3018
+ version = "1.12.0"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3021
+
3022
+ [[package]]
3023
+ name = "unicode-width"
3024
+ version = "0.2.2"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3027
+
3028
+ [[package]]
3029
+ name = "unindent"
3030
+ version = "0.2.4"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3033
+
3034
+ [[package]]
3035
+ name = "untrusted"
3036
+ version = "0.9.0"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3039
+
3040
+ [[package]]
3041
+ name = "unty"
3042
+ version = "0.0.4"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3045
+
3046
+ [[package]]
3047
+ name = "url"
3048
+ version = "2.5.7"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3051
+ dependencies = [
3052
+ "form_urlencoded",
3053
+ "idna",
3054
+ "percent-encoding",
3055
+ "serde",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "utf8_iter"
3060
+ version = "1.0.4"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3063
+
3064
+ [[package]]
3065
+ name = "uuid"
3066
+ version = "1.19.0"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3069
+ dependencies = [
3070
+ "getrandom 0.3.4",
3071
+ "js-sys",
3072
+ "serde_core",
3073
+ "wasm-bindgen",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "version_check"
3078
+ version = "0.9.5"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3081
+
3082
+ [[package]]
3083
+ name = "virtue"
3084
+ version = "0.0.18"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3087
+
3088
+ [[package]]
3089
+ name = "walkdir"
3090
+ version = "2.5.0"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3093
+ dependencies = [
3094
+ "same-file",
3095
+ "winapi-util",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "want"
3100
+ version = "0.3.1"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3103
+ dependencies = [
3104
+ "try-lock",
3105
+ ]
3106
+
3107
+ [[package]]
3108
+ name = "wasi"
3109
+ version = "0.11.1+wasi-snapshot-preview1"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3112
+
3113
+ [[package]]
3114
+ name = "wasip2"
3115
+ version = "1.0.1+wasi-0.2.4"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3118
+ dependencies = [
3119
+ "wit-bindgen",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "wasm-bindgen"
3124
+ version = "0.2.106"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3127
+ dependencies = [
3128
+ "cfg-if",
3129
+ "once_cell",
3130
+ "rustversion",
3131
+ "wasm-bindgen-macro",
3132
+ "wasm-bindgen-shared",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "wasm-bindgen-futures"
3137
+ version = "0.4.56"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3140
+ dependencies = [
3141
+ "cfg-if",
3142
+ "js-sys",
3143
+ "once_cell",
3144
+ "wasm-bindgen",
3145
+ "web-sys",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "wasm-bindgen-macro"
3150
+ version = "0.2.106"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3153
+ dependencies = [
3154
+ "quote",
3155
+ "wasm-bindgen-macro-support",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "wasm-bindgen-macro-support"
3160
+ version = "0.2.106"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3163
+ dependencies = [
3164
+ "bumpalo",
3165
+ "proc-macro2",
3166
+ "quote",
3167
+ "syn",
3168
+ "wasm-bindgen-shared",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "wasm-bindgen-shared"
3173
+ version = "0.2.106"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3176
+ dependencies = [
3177
+ "unicode-ident",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "wasm-streams"
3182
+ version = "0.4.2"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3185
+ dependencies = [
3186
+ "futures-util",
3187
+ "js-sys",
3188
+ "wasm-bindgen",
3189
+ "wasm-bindgen-futures",
3190
+ "web-sys",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "web-sys"
3195
+ version = "0.3.83"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3198
+ dependencies = [
3199
+ "js-sys",
3200
+ "wasm-bindgen",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "web-time"
3205
+ version = "1.1.0"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3208
+ dependencies = [
3209
+ "js-sys",
3210
+ "wasm-bindgen",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "winapi"
3215
+ version = "0.3.9"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3218
+ dependencies = [
3219
+ "winapi-i686-pc-windows-gnu",
3220
+ "winapi-x86_64-pc-windows-gnu",
3221
+ ]
3222
+
3223
+ [[package]]
3224
+ name = "winapi-i686-pc-windows-gnu"
3225
+ version = "0.4.0"
3226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3227
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3228
+
3229
+ [[package]]
3230
+ name = "winapi-util"
3231
+ version = "0.1.11"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3234
+ dependencies = [
3235
+ "windows-sys 0.61.2",
3236
+ ]
3237
+
3238
+ [[package]]
3239
+ name = "winapi-x86_64-pc-windows-gnu"
3240
+ version = "0.4.0"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3243
+
3244
+ [[package]]
3245
+ name = "windows-core"
3246
+ version = "0.62.2"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3249
+ dependencies = [
3250
+ "windows-implement",
3251
+ "windows-interface",
3252
+ "windows-link",
3253
+ "windows-result",
3254
+ "windows-strings",
3255
+ ]
3256
+
3257
+ [[package]]
3258
+ name = "windows-implement"
3259
+ version = "0.60.2"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3262
+ dependencies = [
3263
+ "proc-macro2",
3264
+ "quote",
3265
+ "syn",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "windows-interface"
3270
+ version = "0.59.3"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3273
+ dependencies = [
3274
+ "proc-macro2",
3275
+ "quote",
3276
+ "syn",
3277
+ ]
3278
+
3279
+ [[package]]
3280
+ name = "windows-link"
3281
+ version = "0.2.1"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3284
+
3285
+ [[package]]
3286
+ name = "windows-result"
3287
+ version = "0.4.1"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3290
+ dependencies = [
3291
+ "windows-link",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "windows-strings"
3296
+ version = "0.5.1"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3299
+ dependencies = [
3300
+ "windows-link",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "windows-sys"
3305
+ version = "0.52.0"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3308
+ dependencies = [
3309
+ "windows-targets 0.52.6",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "windows-sys"
3314
+ version = "0.59.0"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3317
+ dependencies = [
3318
+ "windows-targets 0.52.6",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "windows-sys"
3323
+ version = "0.60.2"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3326
+ dependencies = [
3327
+ "windows-targets 0.53.5",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "windows-sys"
3332
+ version = "0.61.2"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3335
+ dependencies = [
3336
+ "windows-link",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "windows-targets"
3341
+ version = "0.52.6"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3344
+ dependencies = [
3345
+ "windows_aarch64_gnullvm 0.52.6",
3346
+ "windows_aarch64_msvc 0.52.6",
3347
+ "windows_i686_gnu 0.52.6",
3348
+ "windows_i686_gnullvm 0.52.6",
3349
+ "windows_i686_msvc 0.52.6",
3350
+ "windows_x86_64_gnu 0.52.6",
3351
+ "windows_x86_64_gnullvm 0.52.6",
3352
+ "windows_x86_64_msvc 0.52.6",
3353
+ ]
3354
+
3355
+ [[package]]
3356
+ name = "windows-targets"
3357
+ version = "0.53.5"
3358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3359
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3360
+ dependencies = [
3361
+ "windows-link",
3362
+ "windows_aarch64_gnullvm 0.53.1",
3363
+ "windows_aarch64_msvc 0.53.1",
3364
+ "windows_i686_gnu 0.53.1",
3365
+ "windows_i686_gnullvm 0.53.1",
3366
+ "windows_i686_msvc 0.53.1",
3367
+ "windows_x86_64_gnu 0.53.1",
3368
+ "windows_x86_64_gnullvm 0.53.1",
3369
+ "windows_x86_64_msvc 0.53.1",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "windows_aarch64_gnullvm"
3374
+ version = "0.52.6"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3377
+
3378
+ [[package]]
3379
+ name = "windows_aarch64_gnullvm"
3380
+ version = "0.53.1"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3383
+
3384
+ [[package]]
3385
+ name = "windows_aarch64_msvc"
3386
+ version = "0.52.6"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3389
+
3390
+ [[package]]
3391
+ name = "windows_aarch64_msvc"
3392
+ version = "0.53.1"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3395
+
3396
+ [[package]]
3397
+ name = "windows_i686_gnu"
3398
+ version = "0.52.6"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3401
+
3402
+ [[package]]
3403
+ name = "windows_i686_gnu"
3404
+ version = "0.53.1"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3407
+
3408
+ [[package]]
3409
+ name = "windows_i686_gnullvm"
3410
+ version = "0.52.6"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3413
+
3414
+ [[package]]
3415
+ name = "windows_i686_gnullvm"
3416
+ version = "0.53.1"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3419
+
3420
+ [[package]]
3421
+ name = "windows_i686_msvc"
3422
+ version = "0.52.6"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3425
+
3426
+ [[package]]
3427
+ name = "windows_i686_msvc"
3428
+ version = "0.53.1"
3429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3431
+
3432
+ [[package]]
3433
+ name = "windows_x86_64_gnu"
3434
+ version = "0.52.6"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3437
+
3438
+ [[package]]
3439
+ name = "windows_x86_64_gnu"
3440
+ version = "0.53.1"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3443
+
3444
+ [[package]]
3445
+ name = "windows_x86_64_gnullvm"
3446
+ version = "0.52.6"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3449
+
3450
+ [[package]]
3451
+ name = "windows_x86_64_gnullvm"
3452
+ version = "0.53.1"
3453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3454
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3455
+
3456
+ [[package]]
3457
+ name = "windows_x86_64_msvc"
3458
+ version = "0.52.6"
3459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3460
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3461
+
3462
+ [[package]]
3463
+ name = "windows_x86_64_msvc"
3464
+ version = "0.53.1"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3467
+
3468
+ [[package]]
3469
+ name = "wit-bindgen"
3470
+ version = "0.46.0"
3471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3472
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3473
+
3474
+ [[package]]
3475
+ name = "writeable"
3476
+ version = "0.6.2"
3477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3478
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3479
+
3480
+ [[package]]
3481
+ name = "xxhash-rust"
3482
+ version = "0.8.15"
3483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3484
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3485
+
3486
+ [[package]]
3487
+ name = "yoke"
3488
+ version = "0.8.1"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3491
+ dependencies = [
3492
+ "stable_deref_trait",
3493
+ "yoke-derive",
3494
+ "zerofrom",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "yoke-derive"
3499
+ version = "0.8.1"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3502
+ dependencies = [
3503
+ "proc-macro2",
3504
+ "quote",
3505
+ "syn",
3506
+ "synstructure",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "zerocopy"
3511
+ version = "0.8.31"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3514
+ dependencies = [
3515
+ "zerocopy-derive",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "zerocopy-derive"
3520
+ version = "0.8.31"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3523
+ dependencies = [
3524
+ "proc-macro2",
3525
+ "quote",
3526
+ "syn",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "zerofrom"
3531
+ version = "0.1.6"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3534
+ dependencies = [
3535
+ "zerofrom-derive",
3536
+ ]
3537
+
3538
+ [[package]]
3539
+ name = "zerofrom-derive"
3540
+ version = "0.1.6"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3543
+ dependencies = [
3544
+ "proc-macro2",
3545
+ "quote",
3546
+ "syn",
3547
+ "synstructure",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "zeroize"
3552
+ version = "1.8.2"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3555
+
3556
+ [[package]]
3557
+ name = "zerotrie"
3558
+ version = "0.2.3"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3561
+ dependencies = [
3562
+ "displaydoc",
3563
+ "yoke",
3564
+ "zerofrom",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "zerovec"
3569
+ version = "0.11.5"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3572
+ dependencies = [
3573
+ "yoke",
3574
+ "zerofrom",
3575
+ "zerovec-derive",
3576
+ ]
3577
+
3578
+ [[package]]
3579
+ name = "zerovec-derive"
3580
+ version = "0.11.2"
3581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3582
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3583
+ dependencies = [
3584
+ "proc-macro2",
3585
+ "quote",
3586
+ "syn",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "zstd"
3591
+ version = "0.13.3"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3594
+ dependencies = [
3595
+ "zstd-safe",
3596
+ ]
3597
+
3598
+ [[package]]
3599
+ name = "zstd-safe"
3600
+ version = "7.2.4"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3603
+ dependencies = [
3604
+ "zstd-sys",
3605
+ ]
3606
+
3607
+ [[package]]
3608
+ name = "zstd-sys"
3609
+ version = "2.0.16+zstd.1.5.7"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3612
+ dependencies = [
3613
+ "cc",
3614
+ "pkg-config",
3615
+ ]