quarb 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. quarb-0.1.0/Cargo.lock +4894 -0
  2. quarb-0.1.0/Cargo.toml +30 -0
  3. quarb-0.1.0/LICENSE-APACHE +202 -0
  4. quarb-0.1.0/LICENSE-MIT +21 -0
  5. quarb-0.1.0/PKG-INFO +113 -0
  6. quarb-0.1.0/README.md +80 -0
  7. quarb-0.1.0/pyproject.toml +47 -0
  8. quarb-0.1.0/python/quarb/__init__.py +63 -0
  9. quarb-0.1.0/python/quarb/_cli.py +65 -0
  10. quarb-0.1.0/python/quarb/_quarb.pyi +62 -0
  11. quarb-0.1.0/python/quarb/py.typed +0 -0
  12. quarb-0.1.0/quarb/Cargo.toml +33 -0
  13. quarb-0.1.0/quarb/LICENSE-APACHE +202 -0
  14. quarb-0.1.0/quarb/LICENSE-MIT +21 -0
  15. quarb-0.1.0/quarb/README.md +56 -0
  16. quarb-0.1.0/quarb/src/adapter.rs +370 -0
  17. quarb-0.1.0/quarb/src/ast.rs +587 -0
  18. quarb-0.1.0/quarb/src/encoding.rs +542 -0
  19. quarb-0.1.0/quarb/src/error.rs +22 -0
  20. quarb-0.1.0/quarb/src/exec.rs +5208 -0
  21. quarb-0.1.0/quarb/src/lexer.rs +983 -0
  22. quarb-0.1.0/quarb/src/lib.rs +126 -0
  23. quarb-0.1.0/quarb/src/parser.rs +3269 -0
  24. quarb-0.1.0/quarb/src/quantity.rs +385 -0
  25. quarb-0.1.0/quarb/src/reflect.rs +1186 -0
  26. quarb-0.1.0/quarb/src/stdlib.rs +900 -0
  27. quarb-0.1.0/quarb/src/temporal.rs +938 -0
  28. quarb-0.1.0/quarb/src/unparse.rs +651 -0
  29. quarb-0.1.0/quarb/src/value.rs +389 -0
  30. quarb-0.1.0/quarb/tests/defs.rs +203 -0
  31. quarb-0.1.0/quarb/tests/patterns.rs +222 -0
  32. quarb-0.1.0/quarb/tests/reflect.rs +105 -0
  33. quarb-0.1.0/quarb/tests/vocabulary.rs +295 -0
  34. quarb-0.1.0/quarb-csv/Cargo.toml +16 -0
  35. quarb-0.1.0/quarb-csv/LICENSE-APACHE +202 -0
  36. quarb-0.1.0/quarb-csv/LICENSE-MIT +21 -0
  37. quarb-0.1.0/quarb-csv/README.md +19 -0
  38. quarb-0.1.0/quarb-csv/src/lib.rs +126 -0
  39. quarb-0.1.0/quarb-csv/tests/csv.rs +617 -0
  40. quarb-0.1.0/quarb-html/Cargo.toml +16 -0
  41. quarb-0.1.0/quarb-html/LICENSE-APACHE +202 -0
  42. quarb-0.1.0/quarb-html/LICENSE-MIT +21 -0
  43. quarb-0.1.0/quarb-html/README.md +19 -0
  44. quarb-0.1.0/quarb-html/src/lib.rs +296 -0
  45. quarb-0.1.0/quarb-html/tests/html.rs +264 -0
  46. quarb-0.1.0/quarb-json/Cargo.toml +16 -0
  47. quarb-0.1.0/quarb-json/LICENSE-APACHE +202 -0
  48. quarb-0.1.0/quarb-json/LICENSE-MIT +21 -0
  49. quarb-0.1.0/quarb-json/README.md +19 -0
  50. quarb-0.1.0/quarb-json/src/lib.rs +247 -0
  51. quarb-0.1.0/quarb-json/tests/json.rs +201 -0
  52. quarb-0.1.0/quarb-markdown/Cargo.toml +16 -0
  53. quarb-0.1.0/quarb-markdown/LICENSE-APACHE +202 -0
  54. quarb-0.1.0/quarb-markdown/LICENSE-MIT +21 -0
  55. quarb-0.1.0/quarb-markdown/README.md +19 -0
  56. quarb-0.1.0/quarb-markdown/src/lib.rs +22 -0
  57. quarb-0.1.0/quarb-py/Cargo.toml +31 -0
  58. quarb-0.1.0/quarb-py/LICENSE-APACHE +202 -0
  59. quarb-0.1.0/quarb-py/LICENSE-MIT +21 -0
  60. quarb-0.1.0/quarb-py/README.md +80 -0
  61. quarb-0.1.0/quarb-py/src/lib.rs +412 -0
  62. quarb-0.1.0/quarb-py/tests/test_run.py +210 -0
  63. quarb-0.1.0/quarb-toml/Cargo.toml +17 -0
  64. quarb-0.1.0/quarb-toml/LICENSE-APACHE +202 -0
  65. quarb-0.1.0/quarb-toml/LICENSE-MIT +21 -0
  66. quarb-0.1.0/quarb-toml/README.md +19 -0
  67. quarb-0.1.0/quarb-toml/src/lib.rs +97 -0
  68. quarb-0.1.0/quarb-xml/Cargo.toml +17 -0
  69. quarb-0.1.0/quarb-xml/LICENSE-APACHE +202 -0
  70. quarb-0.1.0/quarb-xml/LICENSE-MIT +21 -0
  71. quarb-0.1.0/quarb-xml/README.md +19 -0
  72. quarb-0.1.0/quarb-xml/src/lib.rs +313 -0
  73. quarb-0.1.0/quarb-xml/tests/xml.rs +146 -0
  74. quarb-0.1.0/quarb-yaml/Cargo.toml +17 -0
  75. quarb-0.1.0/quarb-yaml/LICENSE-APACHE +202 -0
  76. quarb-0.1.0/quarb-yaml/LICENSE-MIT +21 -0
  77. quarb-0.1.0/quarb-yaml/README.md +19 -0
  78. quarb-0.1.0/quarb-yaml/src/lib.rs +79 -0
  79. quarb-0.1.0/quarb-yaml/tests/non_string_keys.rs +31 -0
quarb-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,4894 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures 0.2.17",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.7.8"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
27
+ dependencies = [
28
+ "getrandom 0.2.17",
29
+ "once_cell",
30
+ "version_check",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "ahash"
35
+ version = "0.8.12"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
38
+ dependencies = [
39
+ "cfg-if",
40
+ "const-random",
41
+ "getrandom 0.3.4",
42
+ "once_cell",
43
+ "version_check",
44
+ "zerocopy",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "aho-corasick"
49
+ version = "1.1.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
52
+ dependencies = [
53
+ "memchr",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "allocator-api2"
58
+ version = "0.2.21"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
61
+
62
+ [[package]]
63
+ name = "android_system_properties"
64
+ version = "0.1.5"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
67
+ dependencies = [
68
+ "libc",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstream"
73
+ version = "1.0.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
76
+ dependencies = [
77
+ "anstyle",
78
+ "anstyle-parse",
79
+ "anstyle-query",
80
+ "anstyle-wincon",
81
+ "colorchoice",
82
+ "is_terminal_polyfill",
83
+ "utf8parse",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anstyle"
88
+ version = "1.0.14"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
91
+
92
+ [[package]]
93
+ name = "anstyle-parse"
94
+ version = "1.0.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
97
+ dependencies = [
98
+ "utf8parse",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "anstyle-query"
103
+ version = "1.1.5"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
106
+ dependencies = [
107
+ "windows-sys 0.61.2",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "anstyle-wincon"
112
+ version = "3.0.11"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
115
+ dependencies = [
116
+ "anstyle",
117
+ "once_cell_polyfill",
118
+ "windows-sys 0.61.2",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "anyhow"
123
+ version = "1.0.103"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
126
+
127
+ [[package]]
128
+ name = "arbitrary"
129
+ version = "1.4.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
132
+ dependencies = [
133
+ "derive_arbitrary",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "arrayvec"
138
+ version = "0.7.8"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
141
+
142
+ [[package]]
143
+ name = "arrow"
144
+ version = "58.3.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
147
+ dependencies = [
148
+ "arrow-arith",
149
+ "arrow-array",
150
+ "arrow-buffer",
151
+ "arrow-cast",
152
+ "arrow-data",
153
+ "arrow-ord",
154
+ "arrow-row",
155
+ "arrow-schema",
156
+ "arrow-select",
157
+ "arrow-string",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "arrow-arith"
162
+ version = "58.3.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
165
+ dependencies = [
166
+ "arrow-array",
167
+ "arrow-buffer",
168
+ "arrow-data",
169
+ "arrow-schema",
170
+ "chrono",
171
+ "num-traits",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "arrow-array"
176
+ version = "58.3.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
179
+ dependencies = [
180
+ "ahash 0.8.12",
181
+ "arrow-buffer",
182
+ "arrow-data",
183
+ "arrow-schema",
184
+ "chrono",
185
+ "half",
186
+ "hashbrown 0.17.1",
187
+ "num-complex",
188
+ "num-integer",
189
+ "num-traits",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "arrow-buffer"
194
+ version = "58.3.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
197
+ dependencies = [
198
+ "bytes",
199
+ "half",
200
+ "num-bigint",
201
+ "num-traits",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "arrow-cast"
206
+ version = "58.3.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
209
+ dependencies = [
210
+ "arrow-array",
211
+ "arrow-buffer",
212
+ "arrow-data",
213
+ "arrow-ord",
214
+ "arrow-schema",
215
+ "arrow-select",
216
+ "atoi",
217
+ "base64",
218
+ "chrono",
219
+ "comfy-table",
220
+ "half",
221
+ "lexical-core",
222
+ "num-traits",
223
+ "ryu",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "arrow-data"
228
+ version = "58.3.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
231
+ dependencies = [
232
+ "arrow-buffer",
233
+ "arrow-schema",
234
+ "half",
235
+ "num-integer",
236
+ "num-traits",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "arrow-ord"
241
+ version = "58.3.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
244
+ dependencies = [
245
+ "arrow-array",
246
+ "arrow-buffer",
247
+ "arrow-data",
248
+ "arrow-schema",
249
+ "arrow-select",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "arrow-row"
254
+ version = "58.3.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
257
+ dependencies = [
258
+ "arrow-array",
259
+ "arrow-buffer",
260
+ "arrow-data",
261
+ "arrow-schema",
262
+ "half",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "arrow-schema"
267
+ version = "58.3.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
270
+ dependencies = [
271
+ "bitflags",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "arrow-select"
276
+ version = "58.3.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
279
+ dependencies = [
280
+ "ahash 0.8.12",
281
+ "arrow-array",
282
+ "arrow-buffer",
283
+ "arrow-data",
284
+ "arrow-schema",
285
+ "num-traits",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "arrow-string"
290
+ version = "58.3.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
293
+ dependencies = [
294
+ "arrow-array",
295
+ "arrow-buffer",
296
+ "arrow-data",
297
+ "arrow-schema",
298
+ "arrow-select",
299
+ "memchr",
300
+ "num-traits",
301
+ "regex",
302
+ "regex-syntax",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "async-trait"
307
+ version = "0.1.89"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
310
+ dependencies = [
311
+ "proc-macro2",
312
+ "quote",
313
+ "syn 2.0.118",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "atoi"
318
+ version = "2.0.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
321
+ dependencies = [
322
+ "num-traits",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "atomic-waker"
327
+ version = "1.1.2"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
330
+
331
+ [[package]]
332
+ name = "autocfg"
333
+ version = "1.5.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
336
+
337
+ [[package]]
338
+ name = "base64"
339
+ version = "0.22.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
342
+
343
+ [[package]]
344
+ name = "base64ct"
345
+ version = "1.8.3"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
348
+
349
+ [[package]]
350
+ name = "bitflags"
351
+ version = "2.13.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
354
+ dependencies = [
355
+ "serde_core",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "bitvec"
360
+ version = "1.1.1"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
363
+ dependencies = [
364
+ "funty",
365
+ "radium",
366
+ "tap",
367
+ "wyz",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "block-buffer"
372
+ version = "0.10.4"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
375
+ dependencies = [
376
+ "generic-array",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "block-buffer"
381
+ version = "0.12.1"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
384
+ dependencies = [
385
+ "hybrid-array",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "borsh"
390
+ version = "1.7.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "2f3f6da4992df95bbcd9af42a6c7dcb994498fc9048230405f3b36ff7cd3f145"
393
+ dependencies = [
394
+ "borsh-derive",
395
+ "bytes",
396
+ "cfg_aliases",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "borsh-derive"
401
+ version = "1.7.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3ae8fb4fb5740e4b2c4884ff95f5f32f5e8479db1e8fd8eb49ddbe09eb09bb7c"
404
+ dependencies = [
405
+ "once_cell",
406
+ "proc-macro-crate",
407
+ "proc-macro2",
408
+ "quote",
409
+ "syn 2.0.118",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "bstr"
414
+ version = "1.12.3"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
417
+ dependencies = [
418
+ "memchr",
419
+ "serde_core",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "bumpalo"
424
+ version = "3.20.3"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
427
+
428
+ [[package]]
429
+ name = "bytecheck"
430
+ version = "0.6.12"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
433
+ dependencies = [
434
+ "bytecheck_derive",
435
+ "ptr_meta",
436
+ "simdutf8",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "bytecheck_derive"
441
+ version = "0.6.12"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
444
+ dependencies = [
445
+ "proc-macro2",
446
+ "quote",
447
+ "syn 1.0.109",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "byteorder"
452
+ version = "1.5.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
455
+
456
+ [[package]]
457
+ name = "bytes"
458
+ version = "1.12.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
461
+
462
+ [[package]]
463
+ name = "bzip2"
464
+ version = "0.5.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
467
+ dependencies = [
468
+ "bzip2-sys",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "bzip2-sys"
473
+ version = "0.1.13+1.0.8"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
476
+ dependencies = [
477
+ "cc",
478
+ "pkg-config",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "calamine"
483
+ version = "0.26.1"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "138646b9af2c5d7f1804ea4bf93afc597737d2bd4f7341d67c48b03316976eb1"
486
+ dependencies = [
487
+ "byteorder",
488
+ "codepage",
489
+ "encoding_rs",
490
+ "log",
491
+ "quick-xml 0.31.0",
492
+ "serde",
493
+ "zip 2.4.2",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "cast"
498
+ version = "0.3.0"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
501
+
502
+ [[package]]
503
+ name = "cc"
504
+ version = "1.2.66"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
507
+ dependencies = [
508
+ "find-msvc-tools",
509
+ "jobserver",
510
+ "libc",
511
+ "shlex",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "cfg-if"
516
+ version = "1.0.4"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
519
+
520
+ [[package]]
521
+ name = "cfg_aliases"
522
+ version = "0.2.1"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
525
+
526
+ [[package]]
527
+ name = "chacha20"
528
+ version = "0.10.1"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
531
+ dependencies = [
532
+ "cfg-if",
533
+ "cpufeatures 0.3.0",
534
+ "rand_core 0.10.1",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "chrono"
539
+ version = "0.4.45"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
542
+ dependencies = [
543
+ "iana-time-zone",
544
+ "num-traits",
545
+ "windows-link",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "cipher"
550
+ version = "0.4.4"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
553
+ dependencies = [
554
+ "crypto-common 0.1.7",
555
+ "inout",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "clap"
560
+ version = "4.6.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
563
+ dependencies = [
564
+ "clap_builder",
565
+ "clap_derive",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "clap_builder"
570
+ version = "4.6.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
573
+ dependencies = [
574
+ "anstream",
575
+ "anstyle",
576
+ "clap_lex",
577
+ "strsim",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "clap_derive"
582
+ version = "4.6.1"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
585
+ dependencies = [
586
+ "heck",
587
+ "proc-macro2",
588
+ "quote",
589
+ "syn 2.0.118",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "clap_lex"
594
+ version = "1.1.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
597
+
598
+ [[package]]
599
+ name = "cmov"
600
+ version = "0.5.4"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
603
+
604
+ [[package]]
605
+ name = "codepage"
606
+ version = "0.1.2"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
609
+ dependencies = [
610
+ "encoding_rs",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "colligo"
615
+ version = "0.1.1"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "bab993b95c65e162cb6476492af00a17d991d73be5655e9fe7b9784895765f4e"
618
+ dependencies = [
619
+ "serde_json",
620
+ "thiserror",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "colorchoice"
625
+ version = "1.0.5"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
628
+
629
+ [[package]]
630
+ name = "comfy-table"
631
+ version = "7.1.4"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
634
+ dependencies = [
635
+ "crossterm",
636
+ "unicode-segmentation",
637
+ "unicode-width",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "concurrent-queue"
642
+ version = "2.5.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
645
+ dependencies = [
646
+ "crossbeam-utils",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "const-oid"
651
+ version = "0.9.6"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
654
+
655
+ [[package]]
656
+ name = "const-oid"
657
+ version = "0.10.2"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
660
+
661
+ [[package]]
662
+ name = "const-random"
663
+ version = "0.1.18"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
666
+ dependencies = [
667
+ "const-random-macro",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "const-random-macro"
672
+ version = "0.1.16"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
675
+ dependencies = [
676
+ "getrandom 0.2.17",
677
+ "once_cell",
678
+ "tiny-keccak",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "constant_time_eq"
683
+ version = "0.3.1"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
686
+
687
+ [[package]]
688
+ name = "core-foundation-sys"
689
+ version = "0.8.7"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
692
+
693
+ [[package]]
694
+ name = "cpufeatures"
695
+ version = "0.2.17"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
698
+ dependencies = [
699
+ "libc",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "cpufeatures"
704
+ version = "0.3.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
707
+ dependencies = [
708
+ "libc",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "crc"
713
+ version = "3.4.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
716
+ dependencies = [
717
+ "crc-catalog",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "crc-catalog"
722
+ version = "2.5.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
725
+
726
+ [[package]]
727
+ name = "crc32fast"
728
+ version = "1.5.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
731
+ dependencies = [
732
+ "cfg-if",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "crossbeam-deque"
737
+ version = "0.8.6"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
740
+ dependencies = [
741
+ "crossbeam-epoch",
742
+ "crossbeam-utils",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "crossbeam-epoch"
747
+ version = "0.9.18"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
750
+ dependencies = [
751
+ "crossbeam-utils",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "crossbeam-queue"
756
+ version = "0.3.13"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
759
+ dependencies = [
760
+ "crossbeam-utils",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "crossbeam-utils"
765
+ version = "0.8.21"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
768
+
769
+ [[package]]
770
+ name = "crossterm"
771
+ version = "0.28.1"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
774
+ dependencies = [
775
+ "bitflags",
776
+ "crossterm_winapi",
777
+ "parking_lot",
778
+ "rustix 0.38.44",
779
+ "winapi",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "crossterm_winapi"
784
+ version = "0.9.1"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
787
+ dependencies = [
788
+ "winapi",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "crunchy"
793
+ version = "0.2.4"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
796
+
797
+ [[package]]
798
+ name = "crypto-common"
799
+ version = "0.1.7"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
802
+ dependencies = [
803
+ "generic-array",
804
+ "typenum",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "crypto-common"
809
+ version = "0.2.2"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
812
+ dependencies = [
813
+ "hybrid-array",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "cssparser"
818
+ version = "0.31.2"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be"
821
+ dependencies = [
822
+ "cssparser-macros",
823
+ "dtoa-short",
824
+ "itoa",
825
+ "phf 0.11.3",
826
+ "smallvec",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "cssparser-macros"
831
+ version = "0.6.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
834
+ dependencies = [
835
+ "quote",
836
+ "syn 2.0.118",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "csv"
841
+ version = "1.4.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
844
+ dependencies = [
845
+ "csv-core",
846
+ "itoa",
847
+ "ryu",
848
+ "serde_core",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "csv-core"
853
+ version = "0.1.13"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
856
+ dependencies = [
857
+ "memchr",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "ctutils"
862
+ version = "0.4.2"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
865
+ dependencies = [
866
+ "cmov",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "deflate64"
871
+ version = "0.1.12"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
874
+
875
+ [[package]]
876
+ name = "der"
877
+ version = "0.7.10"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
880
+ dependencies = [
881
+ "const-oid 0.9.6",
882
+ "pem-rfc7468",
883
+ "zeroize",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "deranged"
888
+ version = "0.5.8"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
891
+
892
+ [[package]]
893
+ name = "derive_arbitrary"
894
+ version = "1.4.2"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
897
+ dependencies = [
898
+ "proc-macro2",
899
+ "quote",
900
+ "syn 2.0.118",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "derive_more"
905
+ version = "0.99.20"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
908
+ dependencies = [
909
+ "proc-macro2",
910
+ "quote",
911
+ "syn 2.0.118",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "digest"
916
+ version = "0.10.7"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
919
+ dependencies = [
920
+ "block-buffer 0.10.4",
921
+ "const-oid 0.9.6",
922
+ "crypto-common 0.1.7",
923
+ "subtle",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "digest"
928
+ version = "0.11.3"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
931
+ dependencies = [
932
+ "block-buffer 0.12.1",
933
+ "const-oid 0.10.2",
934
+ "crypto-common 0.2.2",
935
+ "ctutils",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "displaydoc"
940
+ version = "0.2.6"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
943
+ dependencies = [
944
+ "proc-macro2",
945
+ "quote",
946
+ "syn 2.0.118",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "dotenvy"
951
+ version = "0.15.7"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
954
+
955
+ [[package]]
956
+ name = "dtoa"
957
+ version = "1.0.11"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
960
+
961
+ [[package]]
962
+ name = "dtoa-short"
963
+ version = "0.3.5"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
966
+ dependencies = [
967
+ "dtoa",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "duckdb"
972
+ version = "1.10504.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "0b9b997383221efd999a362448a0866c54b9a2cb7d4da8cd4903ead4df9f8eaa"
975
+ dependencies = [
976
+ "arrow",
977
+ "cast",
978
+ "comfy-table",
979
+ "fallible-iterator 0.3.0",
980
+ "fallible-streaming-iterator",
981
+ "hashlink 0.10.0",
982
+ "libduckdb-sys",
983
+ "num-integer",
984
+ "rust_decimal",
985
+ "strum",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "ego-tree"
990
+ version = "0.6.3"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642"
993
+
994
+ [[package]]
995
+ name = "either"
996
+ version = "1.16.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
999
+ dependencies = [
1000
+ "serde",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "encoding_rs"
1005
+ version = "0.8.35"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1008
+ dependencies = [
1009
+ "cfg-if",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "equivalent"
1014
+ version = "1.0.2"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1017
+
1018
+ [[package]]
1019
+ name = "errno"
1020
+ version = "0.3.14"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1023
+ dependencies = [
1024
+ "libc",
1025
+ "windows-sys 0.61.2",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "event-listener"
1030
+ version = "5.4.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
1033
+ dependencies = [
1034
+ "concurrent-queue",
1035
+ "parking",
1036
+ "pin-project-lite",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "fallible-iterator"
1041
+ version = "0.2.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
1044
+
1045
+ [[package]]
1046
+ name = "fallible-iterator"
1047
+ version = "0.3.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1050
+
1051
+ [[package]]
1052
+ name = "fallible-streaming-iterator"
1053
+ version = "0.1.9"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1056
+
1057
+ [[package]]
1058
+ name = "fastrand"
1059
+ version = "2.4.1"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1062
+
1063
+ [[package]]
1064
+ name = "filetime"
1065
+ version = "0.2.29"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
1068
+ dependencies = [
1069
+ "cfg-if",
1070
+ "libc",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "find-msvc-tools"
1075
+ version = "0.1.9"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1078
+
1079
+ [[package]]
1080
+ name = "flate2"
1081
+ version = "1.1.9"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1084
+ dependencies = [
1085
+ "crc32fast",
1086
+ "miniz_oxide",
1087
+ "zlib-rs",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "foldhash"
1092
+ version = "0.1.5"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1095
+
1096
+ [[package]]
1097
+ name = "form_urlencoded"
1098
+ version = "1.2.2"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1101
+ dependencies = [
1102
+ "percent-encoding",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "funty"
1107
+ version = "2.0.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1110
+
1111
+ [[package]]
1112
+ name = "futf"
1113
+ version = "0.1.5"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
1116
+ dependencies = [
1117
+ "mac",
1118
+ "new_debug_unreachable",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "futures-channel"
1123
+ version = "0.3.32"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1126
+ dependencies = [
1127
+ "futures-core",
1128
+ "futures-sink",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "futures-core"
1133
+ version = "0.3.32"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1136
+
1137
+ [[package]]
1138
+ name = "futures-intrusive"
1139
+ version = "0.5.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
1142
+ dependencies = [
1143
+ "futures-core",
1144
+ "lock_api",
1145
+ "parking_lot",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "futures-io"
1150
+ version = "0.3.32"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1153
+
1154
+ [[package]]
1155
+ name = "futures-sink"
1156
+ version = "0.3.32"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1159
+
1160
+ [[package]]
1161
+ name = "futures-task"
1162
+ version = "0.3.32"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1165
+
1166
+ [[package]]
1167
+ name = "futures-util"
1168
+ version = "0.3.32"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1171
+ dependencies = [
1172
+ "futures-core",
1173
+ "futures-io",
1174
+ "futures-sink",
1175
+ "futures-task",
1176
+ "memchr",
1177
+ "pin-project-lite",
1178
+ "slab",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "fxhash"
1183
+ version = "0.2.1"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
1186
+ dependencies = [
1187
+ "byteorder",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "generic-array"
1192
+ version = "0.14.7"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1195
+ dependencies = [
1196
+ "typenum",
1197
+ "version_check",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "getopts"
1202
+ version = "0.2.24"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
1205
+ dependencies = [
1206
+ "unicode-width",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "getrandom"
1211
+ version = "0.2.17"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1214
+ dependencies = [
1215
+ "cfg-if",
1216
+ "js-sys",
1217
+ "libc",
1218
+ "wasi 0.11.1+wasi-snapshot-preview1",
1219
+ "wasm-bindgen",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "getrandom"
1224
+ version = "0.3.4"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1227
+ dependencies = [
1228
+ "cfg-if",
1229
+ "js-sys",
1230
+ "libc",
1231
+ "r-efi 5.3.0",
1232
+ "wasip2",
1233
+ "wasm-bindgen",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "getrandom"
1238
+ version = "0.4.3"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1241
+ dependencies = [
1242
+ "cfg-if",
1243
+ "js-sys",
1244
+ "libc",
1245
+ "r-efi 6.0.0",
1246
+ "rand_core 0.10.1",
1247
+ "wasm-bindgen",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "globset"
1252
+ version = "0.4.18"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
1255
+ dependencies = [
1256
+ "aho-corasick",
1257
+ "bstr",
1258
+ "log",
1259
+ "regex-automata",
1260
+ "regex-syntax",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "half"
1265
+ version = "2.7.1"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1268
+ dependencies = [
1269
+ "cfg-if",
1270
+ "crunchy",
1271
+ "num-traits",
1272
+ "zerocopy",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "hashbrown"
1277
+ version = "0.12.3"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1280
+ dependencies = [
1281
+ "ahash 0.7.8",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "hashbrown"
1286
+ version = "0.14.5"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1289
+ dependencies = [
1290
+ "ahash 0.8.12",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "hashbrown"
1295
+ version = "0.15.5"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1298
+ dependencies = [
1299
+ "allocator-api2",
1300
+ "equivalent",
1301
+ "foldhash",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "hashbrown"
1306
+ version = "0.17.1"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1309
+
1310
+ [[package]]
1311
+ name = "hashlink"
1312
+ version = "0.9.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1315
+ dependencies = [
1316
+ "hashbrown 0.14.5",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "hashlink"
1321
+ version = "0.10.0"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1324
+ dependencies = [
1325
+ "hashbrown 0.15.5",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "heck"
1330
+ version = "0.5.0"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1333
+
1334
+ [[package]]
1335
+ name = "hex"
1336
+ version = "0.4.3"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1339
+
1340
+ [[package]]
1341
+ name = "hkdf"
1342
+ version = "0.12.4"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1345
+ dependencies = [
1346
+ "hmac 0.12.1",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "hmac"
1351
+ version = "0.12.1"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1354
+ dependencies = [
1355
+ "digest 0.10.7",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "hmac"
1360
+ version = "0.13.0"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1363
+ dependencies = [
1364
+ "digest 0.11.3",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "html5ever"
1369
+ version = "0.27.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
1372
+ dependencies = [
1373
+ "log",
1374
+ "mac",
1375
+ "markup5ever",
1376
+ "proc-macro2",
1377
+ "quote",
1378
+ "syn 2.0.118",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "http"
1383
+ version = "1.4.2"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1386
+ dependencies = [
1387
+ "bytes",
1388
+ "itoa",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "http-body"
1393
+ version = "1.0.1"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1396
+ dependencies = [
1397
+ "bytes",
1398
+ "http",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "http-body-util"
1403
+ version = "0.1.3"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1406
+ dependencies = [
1407
+ "bytes",
1408
+ "futures-core",
1409
+ "http",
1410
+ "http-body",
1411
+ "pin-project-lite",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "httparse"
1416
+ version = "1.10.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1419
+
1420
+ [[package]]
1421
+ name = "hybrid-array"
1422
+ version = "0.4.13"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
1425
+ dependencies = [
1426
+ "typenum",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "hyper"
1431
+ version = "1.10.1"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1434
+ dependencies = [
1435
+ "atomic-waker",
1436
+ "bytes",
1437
+ "futures-channel",
1438
+ "futures-core",
1439
+ "http",
1440
+ "http-body",
1441
+ "httparse",
1442
+ "itoa",
1443
+ "pin-project-lite",
1444
+ "smallvec",
1445
+ "tokio",
1446
+ "want",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "hyper-rustls"
1451
+ version = "0.27.9"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1454
+ dependencies = [
1455
+ "http",
1456
+ "hyper",
1457
+ "hyper-util",
1458
+ "rustls",
1459
+ "tokio",
1460
+ "tokio-rustls",
1461
+ "tower-service",
1462
+ "webpki-roots 1.0.8",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "hyper-util"
1467
+ version = "0.1.20"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1470
+ dependencies = [
1471
+ "base64",
1472
+ "bytes",
1473
+ "futures-channel",
1474
+ "futures-util",
1475
+ "http",
1476
+ "http-body",
1477
+ "hyper",
1478
+ "ipnet",
1479
+ "libc",
1480
+ "percent-encoding",
1481
+ "pin-project-lite",
1482
+ "socket2",
1483
+ "tokio",
1484
+ "tower-service",
1485
+ "tracing",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "iana-time-zone"
1490
+ version = "0.1.65"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1493
+ dependencies = [
1494
+ "android_system_properties",
1495
+ "core-foundation-sys",
1496
+ "iana-time-zone-haiku",
1497
+ "js-sys",
1498
+ "log",
1499
+ "wasm-bindgen",
1500
+ "windows-core",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "iana-time-zone-haiku"
1505
+ version = "0.1.2"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1508
+ dependencies = [
1509
+ "cc",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "icu_collections"
1514
+ version = "2.2.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1517
+ dependencies = [
1518
+ "displaydoc",
1519
+ "potential_utf",
1520
+ "utf8_iter",
1521
+ "yoke",
1522
+ "zerofrom",
1523
+ "zerovec",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "icu_locale_core"
1528
+ version = "2.2.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1531
+ dependencies = [
1532
+ "displaydoc",
1533
+ "litemap",
1534
+ "tinystr",
1535
+ "writeable",
1536
+ "zerovec",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "icu_normalizer"
1541
+ version = "2.2.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1544
+ dependencies = [
1545
+ "icu_collections",
1546
+ "icu_normalizer_data",
1547
+ "icu_properties",
1548
+ "icu_provider",
1549
+ "smallvec",
1550
+ "zerovec",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "icu_normalizer_data"
1555
+ version = "2.2.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1558
+
1559
+ [[package]]
1560
+ name = "icu_properties"
1561
+ version = "2.2.0"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1564
+ dependencies = [
1565
+ "icu_collections",
1566
+ "icu_locale_core",
1567
+ "icu_properties_data",
1568
+ "icu_provider",
1569
+ "zerotrie",
1570
+ "zerovec",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "icu_properties_data"
1575
+ version = "2.2.0"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1578
+
1579
+ [[package]]
1580
+ name = "icu_provider"
1581
+ version = "2.2.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1584
+ dependencies = [
1585
+ "displaydoc",
1586
+ "icu_locale_core",
1587
+ "writeable",
1588
+ "yoke",
1589
+ "zerofrom",
1590
+ "zerotrie",
1591
+ "zerovec",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "idna"
1596
+ version = "1.1.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1599
+ dependencies = [
1600
+ "idna_adapter",
1601
+ "smallvec",
1602
+ "utf8_iter",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "idna_adapter"
1607
+ version = "1.2.2"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1610
+ dependencies = [
1611
+ "icu_normalizer",
1612
+ "icu_properties",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "ignore"
1617
+ version = "0.4.27"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
1620
+ dependencies = [
1621
+ "crossbeam-deque",
1622
+ "globset",
1623
+ "log",
1624
+ "memchr",
1625
+ "regex-automata",
1626
+ "same-file",
1627
+ "walkdir",
1628
+ "winapi-util",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "indexmap"
1633
+ version = "2.14.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1636
+ dependencies = [
1637
+ "equivalent",
1638
+ "hashbrown 0.17.1",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "inout"
1643
+ version = "0.1.4"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1646
+ dependencies = [
1647
+ "generic-array",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "ipnet"
1652
+ version = "2.12.0"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1655
+
1656
+ [[package]]
1657
+ name = "is_terminal_polyfill"
1658
+ version = "1.70.2"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1661
+
1662
+ [[package]]
1663
+ name = "itoa"
1664
+ version = "1.0.18"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1667
+
1668
+ [[package]]
1669
+ name = "jobserver"
1670
+ version = "0.1.35"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1673
+ dependencies = [
1674
+ "getrandom 0.4.3",
1675
+ "libc",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "js-sys"
1680
+ version = "0.3.103"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1683
+ dependencies = [
1684
+ "cfg-if",
1685
+ "futures-util",
1686
+ "wasm-bindgen",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "kaiv"
1691
+ version = "0.3.0"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "209f0579b56f129a79a158d7ba7f8d2737f2beb868db059fec93ff8a4afecd57"
1694
+
1695
+ [[package]]
1696
+ name = "lazy_static"
1697
+ version = "1.5.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1700
+ dependencies = [
1701
+ "spin",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "lexical-core"
1706
+ version = "1.0.6"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1709
+ dependencies = [
1710
+ "lexical-parse-float",
1711
+ "lexical-parse-integer",
1712
+ "lexical-util",
1713
+ "lexical-write-float",
1714
+ "lexical-write-integer",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "lexical-parse-float"
1719
+ version = "1.0.6"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1722
+ dependencies = [
1723
+ "lexical-parse-integer",
1724
+ "lexical-util",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "lexical-parse-integer"
1729
+ version = "1.0.6"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1732
+ dependencies = [
1733
+ "lexical-util",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "lexical-util"
1738
+ version = "1.0.7"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1741
+
1742
+ [[package]]
1743
+ name = "lexical-write-float"
1744
+ version = "1.0.6"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1747
+ dependencies = [
1748
+ "lexical-util",
1749
+ "lexical-write-integer",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "lexical-write-integer"
1754
+ version = "1.0.6"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1757
+ dependencies = [
1758
+ "lexical-util",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "libc"
1763
+ version = "0.2.186"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1766
+
1767
+ [[package]]
1768
+ name = "libduckdb-sys"
1769
+ version = "1.10504.0"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "94e67523a40ee3da30411e00e243990b3760d91877202ab2f39c03ab34f8dbfc"
1772
+ dependencies = [
1773
+ "cc",
1774
+ "flate2",
1775
+ "pkg-config",
1776
+ "reqwest",
1777
+ "serde",
1778
+ "serde_json",
1779
+ "tar",
1780
+ "vcpkg",
1781
+ "zip 6.0.0",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "libm"
1786
+ version = "0.2.16"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1789
+
1790
+ [[package]]
1791
+ name = "libredox"
1792
+ version = "0.1.18"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1795
+ dependencies = [
1796
+ "bitflags",
1797
+ "libc",
1798
+ "plain",
1799
+ "redox_syscall 0.9.0",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "libsqlite3-sys"
1804
+ version = "0.30.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1807
+ dependencies = [
1808
+ "pkg-config",
1809
+ "vcpkg",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "linux-raw-sys"
1814
+ version = "0.4.15"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1817
+
1818
+ [[package]]
1819
+ name = "linux-raw-sys"
1820
+ version = "0.12.1"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1823
+
1824
+ [[package]]
1825
+ name = "litemap"
1826
+ version = "0.8.2"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1829
+
1830
+ [[package]]
1831
+ name = "lock_api"
1832
+ version = "0.4.14"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1835
+ dependencies = [
1836
+ "scopeguard",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "log"
1841
+ version = "0.4.33"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1844
+
1845
+ [[package]]
1846
+ name = "lru-slab"
1847
+ version = "0.1.2"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1850
+
1851
+ [[package]]
1852
+ name = "lzma-rs"
1853
+ version = "0.3.0"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
1856
+ dependencies = [
1857
+ "byteorder",
1858
+ "crc",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "lzma-sys"
1863
+ version = "0.1.20"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
1866
+ dependencies = [
1867
+ "cc",
1868
+ "libc",
1869
+ "pkg-config",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "mac"
1874
+ version = "0.1.1"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1877
+
1878
+ [[package]]
1879
+ name = "markup5ever"
1880
+ version = "0.12.1"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
1883
+ dependencies = [
1884
+ "log",
1885
+ "phf 0.11.3",
1886
+ "phf_codegen 0.11.3",
1887
+ "string_cache",
1888
+ "string_cache_codegen",
1889
+ "tendril",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "md-5"
1894
+ version = "0.10.6"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1897
+ dependencies = [
1898
+ "cfg-if",
1899
+ "digest 0.10.7",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "md-5"
1904
+ version = "0.11.0"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1907
+ dependencies = [
1908
+ "cfg-if",
1909
+ "digest 0.11.3",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "memchr"
1914
+ version = "2.8.2"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1917
+
1918
+ [[package]]
1919
+ name = "miniz_oxide"
1920
+ version = "0.8.9"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1923
+ dependencies = [
1924
+ "adler2",
1925
+ "simd-adler32",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "mio"
1930
+ version = "1.2.1"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1933
+ dependencies = [
1934
+ "libc",
1935
+ "wasi 0.11.1+wasi-snapshot-preview1",
1936
+ "windows-sys 0.61.2",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "new_debug_unreachable"
1941
+ version = "1.0.6"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1944
+
1945
+ [[package]]
1946
+ name = "num-bigint"
1947
+ version = "0.4.8"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1950
+ dependencies = [
1951
+ "num-integer",
1952
+ "num-traits",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "num-bigint-dig"
1957
+ version = "0.8.6"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1960
+ dependencies = [
1961
+ "lazy_static",
1962
+ "libm",
1963
+ "num-integer",
1964
+ "num-iter",
1965
+ "num-traits",
1966
+ "rand 0.8.6",
1967
+ "smallvec",
1968
+ "zeroize",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "num-complex"
1973
+ version = "0.4.6"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1976
+ dependencies = [
1977
+ "num-traits",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "num-conv"
1982
+ version = "0.2.2"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1985
+
1986
+ [[package]]
1987
+ name = "num-integer"
1988
+ version = "0.1.46"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1991
+ dependencies = [
1992
+ "num-traits",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "num-iter"
1997
+ version = "0.1.45"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2000
+ dependencies = [
2001
+ "autocfg",
2002
+ "num-integer",
2003
+ "num-traits",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "num-traits"
2008
+ version = "0.2.19"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2011
+ dependencies = [
2012
+ "autocfg",
2013
+ "libm",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "objc2-core-foundation"
2018
+ version = "0.3.2"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
2021
+ dependencies = [
2022
+ "bitflags",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "objc2-system-configuration"
2027
+ version = "0.3.2"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
2030
+ dependencies = [
2031
+ "objc2-core-foundation",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "once_cell"
2036
+ version = "1.21.4"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2039
+
2040
+ [[package]]
2041
+ name = "once_cell_polyfill"
2042
+ version = "1.70.2"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2045
+
2046
+ [[package]]
2047
+ name = "parking"
2048
+ version = "2.2.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2051
+
2052
+ [[package]]
2053
+ name = "parking_lot"
2054
+ version = "0.12.5"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2057
+ dependencies = [
2058
+ "lock_api",
2059
+ "parking_lot_core",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "parking_lot_core"
2064
+ version = "0.9.12"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2067
+ dependencies = [
2068
+ "cfg-if",
2069
+ "libc",
2070
+ "redox_syscall 0.5.18",
2071
+ "smallvec",
2072
+ "windows-link",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "pbkdf2"
2077
+ version = "0.12.2"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2080
+ dependencies = [
2081
+ "digest 0.10.7",
2082
+ "hmac 0.12.1",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "pem-rfc7468"
2087
+ version = "0.7.0"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2090
+ dependencies = [
2091
+ "base64ct",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "percent-encoding"
2096
+ version = "2.3.2"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2099
+
2100
+ [[package]]
2101
+ name = "phf"
2102
+ version = "0.10.1"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2105
+ dependencies = [
2106
+ "phf_shared 0.10.0",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "phf"
2111
+ version = "0.11.3"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2114
+ dependencies = [
2115
+ "phf_macros",
2116
+ "phf_shared 0.11.3",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "phf"
2121
+ version = "0.13.1"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2124
+ dependencies = [
2125
+ "phf_shared 0.13.1",
2126
+ "serde",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "phf_codegen"
2131
+ version = "0.10.0"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2134
+ dependencies = [
2135
+ "phf_generator 0.10.0",
2136
+ "phf_shared 0.10.0",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "phf_codegen"
2141
+ version = "0.11.3"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2144
+ dependencies = [
2145
+ "phf_generator 0.11.3",
2146
+ "phf_shared 0.11.3",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "phf_generator"
2151
+ version = "0.10.0"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2154
+ dependencies = [
2155
+ "phf_shared 0.10.0",
2156
+ "rand 0.8.6",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "phf_generator"
2161
+ version = "0.11.3"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2164
+ dependencies = [
2165
+ "phf_shared 0.11.3",
2166
+ "rand 0.8.6",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "phf_macros"
2171
+ version = "0.11.3"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2174
+ dependencies = [
2175
+ "phf_generator 0.11.3",
2176
+ "phf_shared 0.11.3",
2177
+ "proc-macro2",
2178
+ "quote",
2179
+ "syn 2.0.118",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "phf_shared"
2184
+ version = "0.10.0"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2187
+ dependencies = [
2188
+ "siphasher 0.3.11",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "phf_shared"
2193
+ version = "0.11.3"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2196
+ dependencies = [
2197
+ "siphasher 1.0.3",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "phf_shared"
2202
+ version = "0.13.1"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2205
+ dependencies = [
2206
+ "siphasher 1.0.3",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "pin-project-lite"
2211
+ version = "0.2.17"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2214
+
2215
+ [[package]]
2216
+ name = "pkcs1"
2217
+ version = "0.7.5"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2220
+ dependencies = [
2221
+ "der",
2222
+ "pkcs8",
2223
+ "spki",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "pkcs8"
2228
+ version = "0.10.2"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2231
+ dependencies = [
2232
+ "der",
2233
+ "spki",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "pkg-config"
2238
+ version = "0.3.33"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2241
+
2242
+ [[package]]
2243
+ name = "plain"
2244
+ version = "0.2.3"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2247
+
2248
+ [[package]]
2249
+ name = "portable-atomic"
2250
+ version = "1.13.1"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2253
+
2254
+ [[package]]
2255
+ name = "postgres-protocol"
2256
+ version = "0.6.12"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
2259
+ dependencies = [
2260
+ "base64",
2261
+ "byteorder",
2262
+ "bytes",
2263
+ "fallible-iterator 0.2.0",
2264
+ "hmac 0.13.0",
2265
+ "md-5 0.11.0",
2266
+ "memchr",
2267
+ "rand 0.10.2",
2268
+ "sha2 0.11.0",
2269
+ "stringprep",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "postgres-types"
2274
+ version = "0.2.14"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
2277
+ dependencies = [
2278
+ "bytes",
2279
+ "fallible-iterator 0.2.0",
2280
+ "postgres-protocol",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "potential_utf"
2285
+ version = "0.1.5"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2288
+ dependencies = [
2289
+ "zerovec",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "powerfmt"
2294
+ version = "0.2.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2297
+
2298
+ [[package]]
2299
+ name = "ppv-lite86"
2300
+ version = "0.2.21"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2303
+ dependencies = [
2304
+ "zerocopy",
2305
+ ]
2306
+
2307
+ [[package]]
2308
+ name = "precomputed-hash"
2309
+ version = "0.1.1"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2312
+
2313
+ [[package]]
2314
+ name = "proc-macro-crate"
2315
+ version = "3.5.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2318
+ dependencies = [
2319
+ "toml_edit",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "proc-macro2"
2324
+ version = "1.0.106"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2327
+ dependencies = [
2328
+ "unicode-ident",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "ptr_meta"
2333
+ version = "0.1.4"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
2336
+ dependencies = [
2337
+ "ptr_meta_derive",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "ptr_meta_derive"
2342
+ version = "0.1.4"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
2345
+ dependencies = [
2346
+ "proc-macro2",
2347
+ "quote",
2348
+ "syn 1.0.109",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "pulldown-cmark"
2353
+ version = "0.13.4"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
2356
+ dependencies = [
2357
+ "bitflags",
2358
+ "memchr",
2359
+ "pulldown-cmark-escape",
2360
+ "unicase",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "pulldown-cmark-escape"
2365
+ version = "0.11.0"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
2368
+
2369
+ [[package]]
2370
+ name = "pyo3"
2371
+ version = "0.28.3"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2374
+ dependencies = [
2375
+ "libc",
2376
+ "once_cell",
2377
+ "portable-atomic",
2378
+ "pyo3-build-config",
2379
+ "pyo3-ffi",
2380
+ "pyo3-macros",
2381
+ ]
2382
+
2383
+ [[package]]
2384
+ name = "pyo3-build-config"
2385
+ version = "0.28.3"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2388
+ dependencies = [
2389
+ "target-lexicon",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "pyo3-ffi"
2394
+ version = "0.28.3"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2397
+ dependencies = [
2398
+ "libc",
2399
+ "pyo3-build-config",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "pyo3-macros"
2404
+ version = "0.28.3"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2407
+ dependencies = [
2408
+ "proc-macro2",
2409
+ "pyo3-macros-backend",
2410
+ "quote",
2411
+ "syn 2.0.118",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "pyo3-macros-backend"
2416
+ version = "0.28.3"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2419
+ dependencies = [
2420
+ "heck",
2421
+ "proc-macro2",
2422
+ "pyo3-build-config",
2423
+ "quote",
2424
+ "syn 2.0.118",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "qm"
2429
+ version = "0.1.0"
2430
+ dependencies = [
2431
+ "anyhow",
2432
+ "clap",
2433
+ "quarb",
2434
+ "quarb-maildir",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "qua"
2439
+ version = "0.1.0"
2440
+ dependencies = [
2441
+ "anyhow",
2442
+ "clap",
2443
+ "kaiv",
2444
+ "libc",
2445
+ "quarb",
2446
+ "quarb-archive",
2447
+ "quarb-bigquery",
2448
+ "quarb-code",
2449
+ "quarb-compose",
2450
+ "quarb-csv",
2451
+ "quarb-datastore",
2452
+ "quarb-duckdb",
2453
+ "quarb-firebase",
2454
+ "quarb-firestore",
2455
+ "quarb-fs",
2456
+ "quarb-git",
2457
+ "quarb-gsheet",
2458
+ "quarb-html",
2459
+ "quarb-imap",
2460
+ "quarb-jq",
2461
+ "quarb-json",
2462
+ "quarb-kaiv",
2463
+ "quarb-maildir",
2464
+ "quarb-markdown",
2465
+ "quarb-mount",
2466
+ "quarb-mysql",
2467
+ "quarb-neo4j",
2468
+ "quarb-objstore",
2469
+ "quarb-postgres",
2470
+ "quarb-serve",
2471
+ "quarb-sql",
2472
+ "quarb-sqlite",
2473
+ "quarb-toml",
2474
+ "quarb-xlsx",
2475
+ "quarb-xml",
2476
+ "quarb-xpath",
2477
+ "quarb-yaml",
2478
+ "rusqlite",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "quarb"
2483
+ version = "0.1.2"
2484
+ dependencies = [
2485
+ "colligo",
2486
+ "globset",
2487
+ "quick-xml 0.39.4",
2488
+ "regex",
2489
+ "serde_json",
2490
+ "serde_yaml_ng",
2491
+ "thiserror",
2492
+ "toml",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "quarb-archive"
2497
+ version = "0.1.0"
2498
+ dependencies = [
2499
+ "flate2",
2500
+ "quarb",
2501
+ "tar",
2502
+ "thiserror",
2503
+ "zip 2.4.2",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "quarb-bigquery"
2508
+ version = "0.1.0"
2509
+ dependencies = [
2510
+ "quarb",
2511
+ "quarb-relational",
2512
+ "quarb-sql",
2513
+ "serde_json",
2514
+ "thiserror",
2515
+ "ureq",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "quarb-code"
2520
+ version = "0.1.0"
2521
+ dependencies = [
2522
+ "quarb",
2523
+ "thiserror",
2524
+ "tree-sitter",
2525
+ "tree-sitter-javascript",
2526
+ "tree-sitter-python",
2527
+ "tree-sitter-rust",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "quarb-compose"
2532
+ version = "0.1.0"
2533
+ dependencies = [
2534
+ "quarb",
2535
+ "quarb-code",
2536
+ "quarb-csv",
2537
+ "quarb-fs",
2538
+ "quarb-html",
2539
+ "quarb-json",
2540
+ "quarb-markdown",
2541
+ "quarb-toml",
2542
+ "quarb-xml",
2543
+ "quarb-yaml",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "quarb-csv"
2548
+ version = "0.1.0"
2549
+ dependencies = [
2550
+ "csv",
2551
+ "quarb",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "quarb-datastore"
2556
+ version = "0.1.0"
2557
+ dependencies = [
2558
+ "quarb",
2559
+ "serde_json",
2560
+ "thiserror",
2561
+ "ureq",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "quarb-duckdb"
2566
+ version = "0.1.0"
2567
+ dependencies = [
2568
+ "duckdb",
2569
+ "quarb",
2570
+ "quarb-relational",
2571
+ "quarb-sql",
2572
+ "thiserror",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "quarb-firebase"
2577
+ version = "0.1.0"
2578
+ dependencies = [
2579
+ "quarb",
2580
+ "serde_json",
2581
+ "thiserror",
2582
+ "ureq",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "quarb-firestore"
2587
+ version = "0.1.0"
2588
+ dependencies = [
2589
+ "quarb",
2590
+ "serde_json",
2591
+ "thiserror",
2592
+ "ureq",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "quarb-fs"
2597
+ version = "0.1.0"
2598
+ dependencies = [
2599
+ "ignore",
2600
+ "quarb",
2601
+ "tempfile",
2602
+ ]
2603
+
2604
+ [[package]]
2605
+ name = "quarb-git"
2606
+ version = "0.1.0"
2607
+ dependencies = [
2608
+ "quarb",
2609
+ "thiserror",
2610
+ ]
2611
+
2612
+ [[package]]
2613
+ name = "quarb-gsheet"
2614
+ version = "0.1.0"
2615
+ dependencies = [
2616
+ "quarb",
2617
+ "quarb-relational",
2618
+ "serde_json",
2619
+ "thiserror",
2620
+ "ureq",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "quarb-html"
2625
+ version = "0.1.0"
2626
+ dependencies = [
2627
+ "quarb",
2628
+ "scraper",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "quarb-imap"
2633
+ version = "0.1.0"
2634
+ dependencies = [
2635
+ "quarb",
2636
+ "thiserror",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "quarb-jq"
2641
+ version = "0.1.0"
2642
+ dependencies = [
2643
+ "quarb",
2644
+ "quarb-json",
2645
+ "thiserror",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "quarb-json"
2650
+ version = "0.1.1"
2651
+ dependencies = [
2652
+ "quarb",
2653
+ "serde_json",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "quarb-kaiv"
2658
+ version = "0.1.0"
2659
+ dependencies = [
2660
+ "kaiv",
2661
+ "quarb",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "quarb-maildir"
2666
+ version = "0.1.0"
2667
+ dependencies = [
2668
+ "quarb",
2669
+ "thiserror",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "quarb-markdown"
2674
+ version = "0.1.0"
2675
+ dependencies = [
2676
+ "pulldown-cmark",
2677
+ "quarb-html",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "quarb-mount"
2682
+ version = "0.1.0"
2683
+ dependencies = [
2684
+ "quarb",
2685
+ "quarb-csv",
2686
+ "quarb-json",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "quarb-mysql"
2691
+ version = "0.1.0"
2692
+ dependencies = [
2693
+ "quarb",
2694
+ "quarb-relational",
2695
+ "sqlx",
2696
+ "thiserror",
2697
+ "tokio",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "quarb-neo4j"
2702
+ version = "0.1.0"
2703
+ dependencies = [
2704
+ "quarb",
2705
+ "serde_json",
2706
+ "thiserror",
2707
+ "ureq",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "quarb-objstore"
2712
+ version = "0.1.0"
2713
+ dependencies = [
2714
+ "quarb",
2715
+ "quick-xml 0.39.4",
2716
+ "serde_json",
2717
+ "thiserror",
2718
+ "ureq",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "quarb-postgres"
2723
+ version = "0.1.0"
2724
+ dependencies = [
2725
+ "quarb",
2726
+ "quarb-relational",
2727
+ "thiserror",
2728
+ "tokio",
2729
+ "tokio-postgres",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "quarb-py"
2734
+ version = "0.1.0"
2735
+ dependencies = [
2736
+ "pyo3",
2737
+ "quarb",
2738
+ "quarb-csv",
2739
+ "quarb-html",
2740
+ "quarb-json",
2741
+ "quarb-markdown",
2742
+ "quarb-toml",
2743
+ "quarb-xml",
2744
+ "quarb-yaml",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "quarb-relational"
2749
+ version = "0.1.1"
2750
+ dependencies = [
2751
+ "quarb",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "quarb-serve"
2756
+ version = "0.1.0"
2757
+ dependencies = [
2758
+ "kaiv",
2759
+ "quarb",
2760
+ "quarb-json",
2761
+ "serde_json",
2762
+ "thiserror",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "quarb-sql"
2767
+ version = "0.1.0"
2768
+ dependencies = [
2769
+ "quarb",
2770
+ "quarb-sqlite",
2771
+ "rusqlite",
2772
+ "thiserror",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "quarb-sqlite"
2777
+ version = "0.1.0"
2778
+ dependencies = [
2779
+ "quarb",
2780
+ "quarb-relational",
2781
+ "quarb-sql",
2782
+ "rusqlite",
2783
+ "thiserror",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "quarb-toml"
2788
+ version = "0.1.0"
2789
+ dependencies = [
2790
+ "quarb-json",
2791
+ "serde_json",
2792
+ "toml",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "quarb-wasm"
2797
+ version = "0.1.2"
2798
+ dependencies = [
2799
+ "getrandom 0.3.4",
2800
+ "quarb",
2801
+ "quarb-csv",
2802
+ "quarb-html",
2803
+ "quarb-json",
2804
+ "quarb-markdown",
2805
+ "quarb-toml",
2806
+ "quarb-xml",
2807
+ "quarb-yaml",
2808
+ "serde_json",
2809
+ "wasm-bindgen",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "quarb-xlsx"
2814
+ version = "0.1.0"
2815
+ dependencies = [
2816
+ "calamine",
2817
+ "quarb",
2818
+ "quarb-relational",
2819
+ "thiserror",
2820
+ "zip 2.4.2",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "quarb-xml"
2825
+ version = "0.1.0"
2826
+ dependencies = [
2827
+ "quarb",
2828
+ "quick-xml 0.39.4",
2829
+ "thiserror",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "quarb-xpath"
2834
+ version = "0.1.0"
2835
+ dependencies = [
2836
+ "quarb",
2837
+ "quarb-xml",
2838
+ "thiserror",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "quarb-yaml"
2843
+ version = "0.1.0"
2844
+ dependencies = [
2845
+ "quarb-json",
2846
+ "serde_json",
2847
+ "serde_yaml_ng",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "quick-xml"
2852
+ version = "0.31.0"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
2855
+ dependencies = [
2856
+ "encoding_rs",
2857
+ "memchr",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "quick-xml"
2862
+ version = "0.39.4"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
2865
+ dependencies = [
2866
+ "memchr",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "quinn"
2871
+ version = "0.11.11"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2874
+ dependencies = [
2875
+ "bytes",
2876
+ "cfg_aliases",
2877
+ "pin-project-lite",
2878
+ "quinn-proto",
2879
+ "quinn-udp",
2880
+ "rustc-hash",
2881
+ "rustls",
2882
+ "socket2",
2883
+ "thiserror",
2884
+ "tokio",
2885
+ "tracing",
2886
+ "web-time",
2887
+ ]
2888
+
2889
+ [[package]]
2890
+ name = "quinn-proto"
2891
+ version = "0.11.16"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2894
+ dependencies = [
2895
+ "bytes",
2896
+ "getrandom 0.4.3",
2897
+ "lru-slab",
2898
+ "rand 0.10.2",
2899
+ "rand_pcg",
2900
+ "ring",
2901
+ "rustc-hash",
2902
+ "rustls",
2903
+ "rustls-pki-types",
2904
+ "slab",
2905
+ "thiserror",
2906
+ "tinyvec",
2907
+ "tracing",
2908
+ "web-time",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "quinn-udp"
2913
+ version = "0.5.15"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2916
+ dependencies = [
2917
+ "cfg_aliases",
2918
+ "libc",
2919
+ "once_cell",
2920
+ "socket2",
2921
+ "tracing",
2922
+ "windows-sys 0.61.2",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "quote"
2927
+ version = "1.0.46"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2930
+ dependencies = [
2931
+ "proc-macro2",
2932
+ ]
2933
+
2934
+ [[package]]
2935
+ name = "r-efi"
2936
+ version = "5.3.0"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2939
+
2940
+ [[package]]
2941
+ name = "r-efi"
2942
+ version = "6.0.0"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2945
+
2946
+ [[package]]
2947
+ name = "radium"
2948
+ version = "0.7.0"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2951
+
2952
+ [[package]]
2953
+ name = "rand"
2954
+ version = "0.8.6"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2957
+ dependencies = [
2958
+ "libc",
2959
+ "rand_chacha",
2960
+ "rand_core 0.6.4",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "rand"
2965
+ version = "0.10.2"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2968
+ dependencies = [
2969
+ "chacha20",
2970
+ "getrandom 0.4.3",
2971
+ "rand_core 0.10.1",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "rand_chacha"
2976
+ version = "0.3.1"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2979
+ dependencies = [
2980
+ "ppv-lite86",
2981
+ "rand_core 0.6.4",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "rand_core"
2986
+ version = "0.6.4"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2989
+ dependencies = [
2990
+ "getrandom 0.2.17",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "rand_core"
2995
+ version = "0.10.1"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2998
+
2999
+ [[package]]
3000
+ name = "rand_pcg"
3001
+ version = "0.10.2"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
3004
+ dependencies = [
3005
+ "rand_core 0.10.1",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "redox_syscall"
3010
+ version = "0.5.18"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3013
+ dependencies = [
3014
+ "bitflags",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "redox_syscall"
3019
+ version = "0.9.0"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759"
3022
+ dependencies = [
3023
+ "bitflags",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "regex"
3028
+ version = "1.12.4"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
3031
+ dependencies = [
3032
+ "aho-corasick",
3033
+ "memchr",
3034
+ "regex-automata",
3035
+ "regex-syntax",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "regex-automata"
3040
+ version = "0.4.14"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
3043
+ dependencies = [
3044
+ "aho-corasick",
3045
+ "memchr",
3046
+ "regex-syntax",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "regex-syntax"
3051
+ version = "0.8.11"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3054
+
3055
+ [[package]]
3056
+ name = "rend"
3057
+ version = "0.4.2"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
3060
+ dependencies = [
3061
+ "bytecheck",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "reqwest"
3066
+ version = "0.12.28"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3069
+ dependencies = [
3070
+ "base64",
3071
+ "bytes",
3072
+ "futures-channel",
3073
+ "futures-core",
3074
+ "futures-util",
3075
+ "http",
3076
+ "http-body",
3077
+ "http-body-util",
3078
+ "hyper",
3079
+ "hyper-rustls",
3080
+ "hyper-util",
3081
+ "js-sys",
3082
+ "log",
3083
+ "percent-encoding",
3084
+ "pin-project-lite",
3085
+ "quinn",
3086
+ "rustls",
3087
+ "rustls-pki-types",
3088
+ "serde",
3089
+ "serde_json",
3090
+ "serde_urlencoded",
3091
+ "sync_wrapper",
3092
+ "tokio",
3093
+ "tokio-rustls",
3094
+ "tower",
3095
+ "tower-http",
3096
+ "tower-service",
3097
+ "url",
3098
+ "wasm-bindgen",
3099
+ "wasm-bindgen-futures",
3100
+ "web-sys",
3101
+ "webpki-roots 1.0.8",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "ring"
3106
+ version = "0.17.14"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3109
+ dependencies = [
3110
+ "cc",
3111
+ "cfg-if",
3112
+ "getrandom 0.2.17",
3113
+ "libc",
3114
+ "untrusted",
3115
+ "windows-sys 0.52.0",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "rkyv"
3120
+ version = "0.7.46"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
3123
+ dependencies = [
3124
+ "bitvec",
3125
+ "bytecheck",
3126
+ "bytes",
3127
+ "hashbrown 0.12.3",
3128
+ "ptr_meta",
3129
+ "rend",
3130
+ "rkyv_derive",
3131
+ "seahash",
3132
+ "tinyvec",
3133
+ "uuid",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "rkyv_derive"
3138
+ version = "0.7.46"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
3141
+ dependencies = [
3142
+ "proc-macro2",
3143
+ "quote",
3144
+ "syn 1.0.109",
3145
+ ]
3146
+
3147
+ [[package]]
3148
+ name = "rsa"
3149
+ version = "0.9.10"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
3152
+ dependencies = [
3153
+ "const-oid 0.9.6",
3154
+ "digest 0.10.7",
3155
+ "num-bigint-dig",
3156
+ "num-integer",
3157
+ "num-traits",
3158
+ "pkcs1",
3159
+ "pkcs8",
3160
+ "rand_core 0.6.4",
3161
+ "signature",
3162
+ "spki",
3163
+ "subtle",
3164
+ "zeroize",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "rusqlite"
3169
+ version = "0.32.1"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
3172
+ dependencies = [
3173
+ "bitflags",
3174
+ "fallible-iterator 0.3.0",
3175
+ "fallible-streaming-iterator",
3176
+ "hashlink 0.9.1",
3177
+ "libsqlite3-sys",
3178
+ "smallvec",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "rust_decimal"
3183
+ version = "1.42.1"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
3186
+ dependencies = [
3187
+ "arrayvec",
3188
+ "borsh",
3189
+ "bytes",
3190
+ "num-traits",
3191
+ "rand 0.8.6",
3192
+ "rkyv",
3193
+ "serde",
3194
+ "serde_json",
3195
+ "wasm-bindgen",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "rustc-hash"
3200
+ version = "2.1.3"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
3203
+
3204
+ [[package]]
3205
+ name = "rustix"
3206
+ version = "0.38.44"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3209
+ dependencies = [
3210
+ "bitflags",
3211
+ "errno",
3212
+ "libc",
3213
+ "linux-raw-sys 0.4.15",
3214
+ "windows-sys 0.52.0",
3215
+ ]
3216
+
3217
+ [[package]]
3218
+ name = "rustix"
3219
+ version = "1.1.4"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3222
+ dependencies = [
3223
+ "bitflags",
3224
+ "errno",
3225
+ "libc",
3226
+ "linux-raw-sys 0.12.1",
3227
+ "windows-sys 0.61.2",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "rustls"
3232
+ version = "0.23.41"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
3235
+ dependencies = [
3236
+ "log",
3237
+ "once_cell",
3238
+ "ring",
3239
+ "rustls-pki-types",
3240
+ "rustls-webpki",
3241
+ "subtle",
3242
+ "zeroize",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "rustls-pki-types"
3247
+ version = "1.15.0"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
3250
+ dependencies = [
3251
+ "web-time",
3252
+ "zeroize",
3253
+ ]
3254
+
3255
+ [[package]]
3256
+ name = "rustls-webpki"
3257
+ version = "0.103.13"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
3260
+ dependencies = [
3261
+ "ring",
3262
+ "rustls-pki-types",
3263
+ "untrusted",
3264
+ ]
3265
+
3266
+ [[package]]
3267
+ name = "rustversion"
3268
+ version = "1.0.23"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
3271
+
3272
+ [[package]]
3273
+ name = "ryu"
3274
+ version = "1.0.23"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3277
+
3278
+ [[package]]
3279
+ name = "same-file"
3280
+ version = "1.0.6"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3283
+ dependencies = [
3284
+ "winapi-util",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "scopeguard"
3289
+ version = "1.2.0"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3292
+
3293
+ [[package]]
3294
+ name = "scraper"
3295
+ version = "0.20.0"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "b90460b31bfe1fc07be8262e42c665ad97118d4585869de9345a84d501a9eaf0"
3298
+ dependencies = [
3299
+ "ahash 0.8.12",
3300
+ "cssparser",
3301
+ "ego-tree",
3302
+ "getopts",
3303
+ "html5ever",
3304
+ "once_cell",
3305
+ "selectors",
3306
+ "tendril",
3307
+ ]
3308
+
3309
+ [[package]]
3310
+ name = "seahash"
3311
+ version = "4.1.0"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
3314
+
3315
+ [[package]]
3316
+ name = "selectors"
3317
+ version = "0.25.0"
3318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3319
+ checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06"
3320
+ dependencies = [
3321
+ "bitflags",
3322
+ "cssparser",
3323
+ "derive_more",
3324
+ "fxhash",
3325
+ "log",
3326
+ "new_debug_unreachable",
3327
+ "phf 0.10.1",
3328
+ "phf_codegen 0.10.0",
3329
+ "precomputed-hash",
3330
+ "servo_arc",
3331
+ "smallvec",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "serde"
3336
+ version = "1.0.228"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3339
+ dependencies = [
3340
+ "serde_core",
3341
+ "serde_derive",
3342
+ ]
3343
+
3344
+ [[package]]
3345
+ name = "serde_core"
3346
+ version = "1.0.228"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3349
+ dependencies = [
3350
+ "serde_derive",
3351
+ ]
3352
+
3353
+ [[package]]
3354
+ name = "serde_derive"
3355
+ version = "1.0.228"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3358
+ dependencies = [
3359
+ "proc-macro2",
3360
+ "quote",
3361
+ "syn 2.0.118",
3362
+ ]
3363
+
3364
+ [[package]]
3365
+ name = "serde_json"
3366
+ version = "1.0.150"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
3369
+ dependencies = [
3370
+ "indexmap",
3371
+ "itoa",
3372
+ "memchr",
3373
+ "serde",
3374
+ "serde_core",
3375
+ "zmij",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "serde_spanned"
3380
+ version = "1.1.1"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3383
+ dependencies = [
3384
+ "serde_core",
3385
+ ]
3386
+
3387
+ [[package]]
3388
+ name = "serde_urlencoded"
3389
+ version = "0.7.1"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3392
+ dependencies = [
3393
+ "form_urlencoded",
3394
+ "itoa",
3395
+ "ryu",
3396
+ "serde",
3397
+ ]
3398
+
3399
+ [[package]]
3400
+ name = "serde_yaml_ng"
3401
+ version = "0.10.0"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
3404
+ dependencies = [
3405
+ "indexmap",
3406
+ "itoa",
3407
+ "ryu",
3408
+ "serde",
3409
+ "unsafe-libyaml",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "servo_arc"
3414
+ version = "0.3.0"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44"
3417
+ dependencies = [
3418
+ "stable_deref_trait",
3419
+ ]
3420
+
3421
+ [[package]]
3422
+ name = "sha1"
3423
+ version = "0.10.6"
3424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3425
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3426
+ dependencies = [
3427
+ "cfg-if",
3428
+ "cpufeatures 0.2.17",
3429
+ "digest 0.10.7",
3430
+ ]
3431
+
3432
+ [[package]]
3433
+ name = "sha2"
3434
+ version = "0.10.9"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3437
+ dependencies = [
3438
+ "cfg-if",
3439
+ "cpufeatures 0.2.17",
3440
+ "digest 0.10.7",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "sha2"
3445
+ version = "0.11.0"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3448
+ dependencies = [
3449
+ "cfg-if",
3450
+ "cpufeatures 0.3.0",
3451
+ "digest 0.11.3",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "shlex"
3456
+ version = "2.0.1"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3459
+
3460
+ [[package]]
3461
+ name = "signature"
3462
+ version = "2.2.0"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3465
+ dependencies = [
3466
+ "digest 0.10.7",
3467
+ "rand_core 0.6.4",
3468
+ ]
3469
+
3470
+ [[package]]
3471
+ name = "simd-adler32"
3472
+ version = "0.3.9"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3475
+
3476
+ [[package]]
3477
+ name = "simdutf8"
3478
+ version = "0.1.5"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3481
+
3482
+ [[package]]
3483
+ name = "siphasher"
3484
+ version = "0.3.11"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
3487
+
3488
+ [[package]]
3489
+ name = "siphasher"
3490
+ version = "1.0.3"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
3493
+
3494
+ [[package]]
3495
+ name = "slab"
3496
+ version = "0.4.12"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3499
+
3500
+ [[package]]
3501
+ name = "smallvec"
3502
+ version = "1.15.2"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3505
+
3506
+ [[package]]
3507
+ name = "socket2"
3508
+ version = "0.6.4"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3511
+ dependencies = [
3512
+ "libc",
3513
+ "windows-sys 0.61.2",
3514
+ ]
3515
+
3516
+ [[package]]
3517
+ name = "spin"
3518
+ version = "0.9.8"
3519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3520
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3521
+
3522
+ [[package]]
3523
+ name = "spki"
3524
+ version = "0.7.3"
3525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3526
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3527
+ dependencies = [
3528
+ "base64ct",
3529
+ "der",
3530
+ ]
3531
+
3532
+ [[package]]
3533
+ name = "sqlx"
3534
+ version = "0.8.6"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
3537
+ dependencies = [
3538
+ "sqlx-core",
3539
+ "sqlx-macros",
3540
+ "sqlx-mysql",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "sqlx-core"
3545
+ version = "0.8.6"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
3548
+ dependencies = [
3549
+ "base64",
3550
+ "bytes",
3551
+ "crc",
3552
+ "crossbeam-queue",
3553
+ "either",
3554
+ "event-listener",
3555
+ "futures-core",
3556
+ "futures-intrusive",
3557
+ "futures-io",
3558
+ "futures-util",
3559
+ "hashbrown 0.15.5",
3560
+ "hashlink 0.10.0",
3561
+ "indexmap",
3562
+ "log",
3563
+ "memchr",
3564
+ "once_cell",
3565
+ "percent-encoding",
3566
+ "serde",
3567
+ "sha2 0.10.9",
3568
+ "smallvec",
3569
+ "thiserror",
3570
+ "tokio",
3571
+ "tokio-stream",
3572
+ "tracing",
3573
+ "url",
3574
+ ]
3575
+
3576
+ [[package]]
3577
+ name = "sqlx-macros"
3578
+ version = "0.8.6"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
3581
+ dependencies = [
3582
+ "proc-macro2",
3583
+ "quote",
3584
+ "sqlx-core",
3585
+ "sqlx-macros-core",
3586
+ "syn 2.0.118",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "sqlx-macros-core"
3591
+ version = "0.8.6"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
3594
+ dependencies = [
3595
+ "dotenvy",
3596
+ "either",
3597
+ "heck",
3598
+ "hex",
3599
+ "once_cell",
3600
+ "proc-macro2",
3601
+ "quote",
3602
+ "serde",
3603
+ "serde_json",
3604
+ "sha2 0.10.9",
3605
+ "sqlx-core",
3606
+ "sqlx-mysql",
3607
+ "syn 2.0.118",
3608
+ "tokio",
3609
+ "url",
3610
+ ]
3611
+
3612
+ [[package]]
3613
+ name = "sqlx-mysql"
3614
+ version = "0.8.6"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
3617
+ dependencies = [
3618
+ "atoi",
3619
+ "base64",
3620
+ "bitflags",
3621
+ "byteorder",
3622
+ "bytes",
3623
+ "crc",
3624
+ "digest 0.10.7",
3625
+ "dotenvy",
3626
+ "either",
3627
+ "futures-channel",
3628
+ "futures-core",
3629
+ "futures-io",
3630
+ "futures-util",
3631
+ "generic-array",
3632
+ "hex",
3633
+ "hkdf",
3634
+ "hmac 0.12.1",
3635
+ "itoa",
3636
+ "log",
3637
+ "md-5 0.10.6",
3638
+ "memchr",
3639
+ "once_cell",
3640
+ "percent-encoding",
3641
+ "rand 0.8.6",
3642
+ "rsa",
3643
+ "serde",
3644
+ "sha1",
3645
+ "sha2 0.10.9",
3646
+ "smallvec",
3647
+ "sqlx-core",
3648
+ "stringprep",
3649
+ "thiserror",
3650
+ "tracing",
3651
+ "whoami 1.6.1",
3652
+ ]
3653
+
3654
+ [[package]]
3655
+ name = "stable_deref_trait"
3656
+ version = "1.2.1"
3657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3658
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3659
+
3660
+ [[package]]
3661
+ name = "streaming-iterator"
3662
+ version = "0.1.9"
3663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3664
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3665
+
3666
+ [[package]]
3667
+ name = "string_cache"
3668
+ version = "0.8.9"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
3671
+ dependencies = [
3672
+ "new_debug_unreachable",
3673
+ "parking_lot",
3674
+ "phf_shared 0.11.3",
3675
+ "precomputed-hash",
3676
+ "serde",
3677
+ ]
3678
+
3679
+ [[package]]
3680
+ name = "string_cache_codegen"
3681
+ version = "0.5.4"
3682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3683
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
3684
+ dependencies = [
3685
+ "phf_generator 0.11.3",
3686
+ "phf_shared 0.11.3",
3687
+ "proc-macro2",
3688
+ "quote",
3689
+ ]
3690
+
3691
+ [[package]]
3692
+ name = "stringprep"
3693
+ version = "0.1.5"
3694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3695
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3696
+ dependencies = [
3697
+ "unicode-bidi",
3698
+ "unicode-normalization",
3699
+ "unicode-properties",
3700
+ ]
3701
+
3702
+ [[package]]
3703
+ name = "strsim"
3704
+ version = "0.11.1"
3705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3706
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3707
+
3708
+ [[package]]
3709
+ name = "strum"
3710
+ version = "0.27.2"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
3713
+ dependencies = [
3714
+ "strum_macros",
3715
+ ]
3716
+
3717
+ [[package]]
3718
+ name = "strum_macros"
3719
+ version = "0.27.2"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3722
+ dependencies = [
3723
+ "heck",
3724
+ "proc-macro2",
3725
+ "quote",
3726
+ "syn 2.0.118",
3727
+ ]
3728
+
3729
+ [[package]]
3730
+ name = "subtle"
3731
+ version = "2.6.1"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3734
+
3735
+ [[package]]
3736
+ name = "syn"
3737
+ version = "1.0.109"
3738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3739
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3740
+ dependencies = [
3741
+ "proc-macro2",
3742
+ "quote",
3743
+ "unicode-ident",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "syn"
3748
+ version = "2.0.118"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3751
+ dependencies = [
3752
+ "proc-macro2",
3753
+ "quote",
3754
+ "unicode-ident",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "sync_wrapper"
3759
+ version = "1.0.2"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3762
+ dependencies = [
3763
+ "futures-core",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "synstructure"
3768
+ version = "0.13.2"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3771
+ dependencies = [
3772
+ "proc-macro2",
3773
+ "quote",
3774
+ "syn 2.0.118",
3775
+ ]
3776
+
3777
+ [[package]]
3778
+ name = "tap"
3779
+ version = "1.0.1"
3780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3781
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3782
+
3783
+ [[package]]
3784
+ name = "tar"
3785
+ version = "0.4.46"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
3788
+ dependencies = [
3789
+ "filetime",
3790
+ "libc",
3791
+ "xattr",
3792
+ ]
3793
+
3794
+ [[package]]
3795
+ name = "target-lexicon"
3796
+ version = "0.13.5"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3799
+
3800
+ [[package]]
3801
+ name = "tempfile"
3802
+ version = "3.27.0"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3805
+ dependencies = [
3806
+ "fastrand",
3807
+ "getrandom 0.4.3",
3808
+ "once_cell",
3809
+ "rustix 1.1.4",
3810
+ "windows-sys 0.61.2",
3811
+ ]
3812
+
3813
+ [[package]]
3814
+ name = "tendril"
3815
+ version = "0.4.3"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3818
+ dependencies = [
3819
+ "futf",
3820
+ "mac",
3821
+ "utf-8",
3822
+ ]
3823
+
3824
+ [[package]]
3825
+ name = "thiserror"
3826
+ version = "2.0.18"
3827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3828
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3829
+ dependencies = [
3830
+ "thiserror-impl",
3831
+ ]
3832
+
3833
+ [[package]]
3834
+ name = "thiserror-impl"
3835
+ version = "2.0.18"
3836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3837
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3838
+ dependencies = [
3839
+ "proc-macro2",
3840
+ "quote",
3841
+ "syn 2.0.118",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "time"
3846
+ version = "0.3.53"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
3849
+ dependencies = [
3850
+ "deranged",
3851
+ "num-conv",
3852
+ "powerfmt",
3853
+ "serde_core",
3854
+ "time-core",
3855
+ ]
3856
+
3857
+ [[package]]
3858
+ name = "time-core"
3859
+ version = "0.1.9"
3860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3861
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3862
+
3863
+ [[package]]
3864
+ name = "tiny-keccak"
3865
+ version = "2.0.2"
3866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3867
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3868
+ dependencies = [
3869
+ "crunchy",
3870
+ ]
3871
+
3872
+ [[package]]
3873
+ name = "tinystr"
3874
+ version = "0.8.3"
3875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3876
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3877
+ dependencies = [
3878
+ "displaydoc",
3879
+ "zerovec",
3880
+ ]
3881
+
3882
+ [[package]]
3883
+ name = "tinyvec"
3884
+ version = "1.11.0"
3885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3886
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3887
+ dependencies = [
3888
+ "tinyvec_macros",
3889
+ ]
3890
+
3891
+ [[package]]
3892
+ name = "tinyvec_macros"
3893
+ version = "0.1.1"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3896
+
3897
+ [[package]]
3898
+ name = "tokio"
3899
+ version = "1.52.3"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3902
+ dependencies = [
3903
+ "bytes",
3904
+ "libc",
3905
+ "mio",
3906
+ "pin-project-lite",
3907
+ "socket2",
3908
+ "windows-sys 0.61.2",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "tokio-postgres"
3913
+ version = "0.7.18"
3914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3915
+ checksum = "a528f7d280f6d5b9cd149635c8705b0dd049754bc67d81d31fa25169a93809d3"
3916
+ dependencies = [
3917
+ "async-trait",
3918
+ "byteorder",
3919
+ "bytes",
3920
+ "fallible-iterator 0.2.0",
3921
+ "futures-channel",
3922
+ "futures-util",
3923
+ "log",
3924
+ "parking_lot",
3925
+ "percent-encoding",
3926
+ "phf 0.13.1",
3927
+ "pin-project-lite",
3928
+ "postgres-protocol",
3929
+ "postgres-types",
3930
+ "rand 0.10.2",
3931
+ "socket2",
3932
+ "tokio",
3933
+ "tokio-util",
3934
+ "whoami 2.1.2",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "tokio-rustls"
3939
+ version = "0.26.4"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3942
+ dependencies = [
3943
+ "rustls",
3944
+ "tokio",
3945
+ ]
3946
+
3947
+ [[package]]
3948
+ name = "tokio-stream"
3949
+ version = "0.1.18"
3950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3951
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3952
+ dependencies = [
3953
+ "futures-core",
3954
+ "pin-project-lite",
3955
+ "tokio",
3956
+ ]
3957
+
3958
+ [[package]]
3959
+ name = "tokio-util"
3960
+ version = "0.7.18"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3963
+ dependencies = [
3964
+ "bytes",
3965
+ "futures-core",
3966
+ "futures-sink",
3967
+ "pin-project-lite",
3968
+ "tokio",
3969
+ ]
3970
+
3971
+ [[package]]
3972
+ name = "toml"
3973
+ version = "1.1.2+spec-1.1.0"
3974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3975
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
3976
+ dependencies = [
3977
+ "indexmap",
3978
+ "serde_core",
3979
+ "serde_spanned",
3980
+ "toml_datetime",
3981
+ "toml_parser",
3982
+ "toml_writer",
3983
+ "winnow",
3984
+ ]
3985
+
3986
+ [[package]]
3987
+ name = "toml_datetime"
3988
+ version = "1.1.1+spec-1.1.0"
3989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3990
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3991
+ dependencies = [
3992
+ "serde_core",
3993
+ ]
3994
+
3995
+ [[package]]
3996
+ name = "toml_edit"
3997
+ version = "0.25.12+spec-1.1.0"
3998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3999
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
4000
+ dependencies = [
4001
+ "indexmap",
4002
+ "toml_datetime",
4003
+ "toml_parser",
4004
+ "winnow",
4005
+ ]
4006
+
4007
+ [[package]]
4008
+ name = "toml_parser"
4009
+ version = "1.1.2+spec-1.1.0"
4010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4011
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
4012
+ dependencies = [
4013
+ "winnow",
4014
+ ]
4015
+
4016
+ [[package]]
4017
+ name = "toml_writer"
4018
+ version = "1.1.1+spec-1.1.0"
4019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4020
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
4021
+
4022
+ [[package]]
4023
+ name = "tower"
4024
+ version = "0.5.3"
4025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4026
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4027
+ dependencies = [
4028
+ "futures-core",
4029
+ "futures-util",
4030
+ "pin-project-lite",
4031
+ "sync_wrapper",
4032
+ "tokio",
4033
+ "tower-layer",
4034
+ "tower-service",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "tower-http"
4039
+ version = "0.6.11"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
4042
+ dependencies = [
4043
+ "bitflags",
4044
+ "bytes",
4045
+ "futures-util",
4046
+ "http",
4047
+ "http-body",
4048
+ "pin-project-lite",
4049
+ "tower",
4050
+ "tower-layer",
4051
+ "tower-service",
4052
+ "url",
4053
+ ]
4054
+
4055
+ [[package]]
4056
+ name = "tower-layer"
4057
+ version = "0.3.3"
4058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4059
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4060
+
4061
+ [[package]]
4062
+ name = "tower-service"
4063
+ version = "0.3.3"
4064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4065
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4066
+
4067
+ [[package]]
4068
+ name = "tracing"
4069
+ version = "0.1.44"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4072
+ dependencies = [
4073
+ "log",
4074
+ "pin-project-lite",
4075
+ "tracing-attributes",
4076
+ "tracing-core",
4077
+ ]
4078
+
4079
+ [[package]]
4080
+ name = "tracing-attributes"
4081
+ version = "0.1.31"
4082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4083
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
4084
+ dependencies = [
4085
+ "proc-macro2",
4086
+ "quote",
4087
+ "syn 2.0.118",
4088
+ ]
4089
+
4090
+ [[package]]
4091
+ name = "tracing-core"
4092
+ version = "0.1.36"
4093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4094
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4095
+ dependencies = [
4096
+ "once_cell",
4097
+ ]
4098
+
4099
+ [[package]]
4100
+ name = "tree-sitter"
4101
+ version = "0.24.7"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "a5387dffa7ffc7d2dae12b50c6f7aab8ff79d6210147c6613561fc3d474c6f75"
4104
+ dependencies = [
4105
+ "cc",
4106
+ "regex",
4107
+ "regex-syntax",
4108
+ "streaming-iterator",
4109
+ "tree-sitter-language",
4110
+ ]
4111
+
4112
+ [[package]]
4113
+ name = "tree-sitter-javascript"
4114
+ version = "0.23.1"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "bf40bf599e0416c16c125c3cec10ee5ddc7d1bb8b0c60fa5c4de249ad34dc1b1"
4117
+ dependencies = [
4118
+ "cc",
4119
+ "tree-sitter-language",
4120
+ ]
4121
+
4122
+ [[package]]
4123
+ name = "tree-sitter-language"
4124
+ version = "0.1.7"
4125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4126
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
4127
+
4128
+ [[package]]
4129
+ name = "tree-sitter-python"
4130
+ version = "0.23.6"
4131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4132
+ checksum = "3d065aaa27f3aaceaf60c1f0e0ac09e1cb9eb8ed28e7bcdaa52129cffc7f4b04"
4133
+ dependencies = [
4134
+ "cc",
4135
+ "tree-sitter-language",
4136
+ ]
4137
+
4138
+ [[package]]
4139
+ name = "tree-sitter-rust"
4140
+ version = "0.23.3"
4141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4142
+ checksum = "ca8ccb3e3a3495c8a943f6c3fd24c3804c471fd7f4f16087623c7fa4c0068e8a"
4143
+ dependencies = [
4144
+ "cc",
4145
+ "tree-sitter-language",
4146
+ ]
4147
+
4148
+ [[package]]
4149
+ name = "try-lock"
4150
+ version = "0.2.5"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4153
+
4154
+ [[package]]
4155
+ name = "typenum"
4156
+ version = "1.20.1"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4159
+
4160
+ [[package]]
4161
+ name = "unicase"
4162
+ version = "2.9.0"
4163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4164
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
4165
+
4166
+ [[package]]
4167
+ name = "unicode-bidi"
4168
+ version = "0.3.18"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
4171
+
4172
+ [[package]]
4173
+ name = "unicode-ident"
4174
+ version = "1.0.24"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4177
+
4178
+ [[package]]
4179
+ name = "unicode-normalization"
4180
+ version = "0.1.25"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
4183
+ dependencies = [
4184
+ "tinyvec",
4185
+ ]
4186
+
4187
+ [[package]]
4188
+ name = "unicode-properties"
4189
+ version = "0.1.4"
4190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4191
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
4192
+
4193
+ [[package]]
4194
+ name = "unicode-segmentation"
4195
+ version = "1.13.3"
4196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4197
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
4198
+
4199
+ [[package]]
4200
+ name = "unicode-width"
4201
+ version = "0.2.2"
4202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4203
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4204
+
4205
+ [[package]]
4206
+ name = "unsafe-libyaml"
4207
+ version = "0.2.11"
4208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4209
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4210
+
4211
+ [[package]]
4212
+ name = "untrusted"
4213
+ version = "0.9.0"
4214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4215
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4216
+
4217
+ [[package]]
4218
+ name = "ureq"
4219
+ version = "2.12.1"
4220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4221
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
4222
+ dependencies = [
4223
+ "base64",
4224
+ "flate2",
4225
+ "log",
4226
+ "once_cell",
4227
+ "rustls",
4228
+ "rustls-pki-types",
4229
+ "serde",
4230
+ "serde_json",
4231
+ "url",
4232
+ "webpki-roots 0.26.11",
4233
+ ]
4234
+
4235
+ [[package]]
4236
+ name = "url"
4237
+ version = "2.5.8"
4238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4239
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4240
+ dependencies = [
4241
+ "form_urlencoded",
4242
+ "idna",
4243
+ "percent-encoding",
4244
+ "serde",
4245
+ ]
4246
+
4247
+ [[package]]
4248
+ name = "utf-8"
4249
+ version = "0.7.6"
4250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4251
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
4252
+
4253
+ [[package]]
4254
+ name = "utf8_iter"
4255
+ version = "1.0.4"
4256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4257
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4258
+
4259
+ [[package]]
4260
+ name = "utf8parse"
4261
+ version = "0.2.2"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4264
+
4265
+ [[package]]
4266
+ name = "uuid"
4267
+ version = "1.23.4"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
4270
+ dependencies = [
4271
+ "js-sys",
4272
+ "wasm-bindgen",
4273
+ ]
4274
+
4275
+ [[package]]
4276
+ name = "vcpkg"
4277
+ version = "0.2.15"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4280
+
4281
+ [[package]]
4282
+ name = "version_check"
4283
+ version = "0.9.5"
4284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4285
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4286
+
4287
+ [[package]]
4288
+ name = "walkdir"
4289
+ version = "2.5.0"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4292
+ dependencies = [
4293
+ "same-file",
4294
+ "winapi-util",
4295
+ ]
4296
+
4297
+ [[package]]
4298
+ name = "want"
4299
+ version = "0.3.1"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4302
+ dependencies = [
4303
+ "try-lock",
4304
+ ]
4305
+
4306
+ [[package]]
4307
+ name = "wasi"
4308
+ version = "0.11.1+wasi-snapshot-preview1"
4309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4310
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4311
+
4312
+ [[package]]
4313
+ name = "wasi"
4314
+ version = "0.14.7+wasi-0.2.4"
4315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4316
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
4317
+ dependencies = [
4318
+ "wasip2",
4319
+ ]
4320
+
4321
+ [[package]]
4322
+ name = "wasip2"
4323
+ version = "1.0.4+wasi-0.2.12"
4324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4325
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
4326
+ dependencies = [
4327
+ "wit-bindgen",
4328
+ ]
4329
+
4330
+ [[package]]
4331
+ name = "wasite"
4332
+ version = "0.1.0"
4333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4334
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
4335
+
4336
+ [[package]]
4337
+ name = "wasite"
4338
+ version = "1.0.2"
4339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4340
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
4341
+ dependencies = [
4342
+ "wasi 0.14.7+wasi-0.2.4",
4343
+ ]
4344
+
4345
+ [[package]]
4346
+ name = "wasm-bindgen"
4347
+ version = "0.2.126"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
4350
+ dependencies = [
4351
+ "cfg-if",
4352
+ "once_cell",
4353
+ "rustversion",
4354
+ "serde",
4355
+ "wasm-bindgen-macro",
4356
+ "wasm-bindgen-shared",
4357
+ ]
4358
+
4359
+ [[package]]
4360
+ name = "wasm-bindgen-futures"
4361
+ version = "0.4.76"
4362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4363
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
4364
+ dependencies = [
4365
+ "js-sys",
4366
+ "wasm-bindgen",
4367
+ ]
4368
+
4369
+ [[package]]
4370
+ name = "wasm-bindgen-macro"
4371
+ version = "0.2.126"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
4374
+ dependencies = [
4375
+ "quote",
4376
+ "wasm-bindgen-macro-support",
4377
+ ]
4378
+
4379
+ [[package]]
4380
+ name = "wasm-bindgen-macro-support"
4381
+ version = "0.2.126"
4382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4383
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
4384
+ dependencies = [
4385
+ "bumpalo",
4386
+ "proc-macro2",
4387
+ "quote",
4388
+ "syn 2.0.118",
4389
+ "wasm-bindgen-shared",
4390
+ ]
4391
+
4392
+ [[package]]
4393
+ name = "wasm-bindgen-shared"
4394
+ version = "0.2.126"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
4397
+ dependencies = [
4398
+ "unicode-ident",
4399
+ ]
4400
+
4401
+ [[package]]
4402
+ name = "web-sys"
4403
+ version = "0.3.103"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
4406
+ dependencies = [
4407
+ "js-sys",
4408
+ "wasm-bindgen",
4409
+ ]
4410
+
4411
+ [[package]]
4412
+ name = "web-time"
4413
+ version = "1.1.0"
4414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4416
+ dependencies = [
4417
+ "js-sys",
4418
+ "wasm-bindgen",
4419
+ ]
4420
+
4421
+ [[package]]
4422
+ name = "webpki-roots"
4423
+ version = "0.26.11"
4424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4425
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4426
+ dependencies = [
4427
+ "webpki-roots 1.0.8",
4428
+ ]
4429
+
4430
+ [[package]]
4431
+ name = "webpki-roots"
4432
+ version = "1.0.8"
4433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4434
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
4435
+ dependencies = [
4436
+ "rustls-pki-types",
4437
+ ]
4438
+
4439
+ [[package]]
4440
+ name = "whoami"
4441
+ version = "1.6.1"
4442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4443
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
4444
+ dependencies = [
4445
+ "libredox",
4446
+ "wasite 0.1.0",
4447
+ ]
4448
+
4449
+ [[package]]
4450
+ name = "whoami"
4451
+ version = "2.1.2"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
4454
+ dependencies = [
4455
+ "libc",
4456
+ "libredox",
4457
+ "objc2-system-configuration",
4458
+ "wasite 1.0.2",
4459
+ "web-sys",
4460
+ ]
4461
+
4462
+ [[package]]
4463
+ name = "winapi"
4464
+ version = "0.3.9"
4465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4466
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4467
+ dependencies = [
4468
+ "winapi-i686-pc-windows-gnu",
4469
+ "winapi-x86_64-pc-windows-gnu",
4470
+ ]
4471
+
4472
+ [[package]]
4473
+ name = "winapi-i686-pc-windows-gnu"
4474
+ version = "0.4.0"
4475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4476
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4477
+
4478
+ [[package]]
4479
+ name = "winapi-util"
4480
+ version = "0.1.11"
4481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4482
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4483
+ dependencies = [
4484
+ "windows-sys 0.61.2",
4485
+ ]
4486
+
4487
+ [[package]]
4488
+ name = "winapi-x86_64-pc-windows-gnu"
4489
+ version = "0.4.0"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4492
+
4493
+ [[package]]
4494
+ name = "windows-core"
4495
+ version = "0.62.2"
4496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4497
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4498
+ dependencies = [
4499
+ "windows-implement",
4500
+ "windows-interface",
4501
+ "windows-link",
4502
+ "windows-result",
4503
+ "windows-strings",
4504
+ ]
4505
+
4506
+ [[package]]
4507
+ name = "windows-implement"
4508
+ version = "0.60.2"
4509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4510
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4511
+ dependencies = [
4512
+ "proc-macro2",
4513
+ "quote",
4514
+ "syn 2.0.118",
4515
+ ]
4516
+
4517
+ [[package]]
4518
+ name = "windows-interface"
4519
+ version = "0.59.3"
4520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4521
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4522
+ dependencies = [
4523
+ "proc-macro2",
4524
+ "quote",
4525
+ "syn 2.0.118",
4526
+ ]
4527
+
4528
+ [[package]]
4529
+ name = "windows-link"
4530
+ version = "0.2.1"
4531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4532
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4533
+
4534
+ [[package]]
4535
+ name = "windows-result"
4536
+ version = "0.4.1"
4537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4538
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4539
+ dependencies = [
4540
+ "windows-link",
4541
+ ]
4542
+
4543
+ [[package]]
4544
+ name = "windows-strings"
4545
+ version = "0.5.1"
4546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4547
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4548
+ dependencies = [
4549
+ "windows-link",
4550
+ ]
4551
+
4552
+ [[package]]
4553
+ name = "windows-sys"
4554
+ version = "0.52.0"
4555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4556
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4557
+ dependencies = [
4558
+ "windows-targets",
4559
+ ]
4560
+
4561
+ [[package]]
4562
+ name = "windows-sys"
4563
+ version = "0.61.2"
4564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4565
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4566
+ dependencies = [
4567
+ "windows-link",
4568
+ ]
4569
+
4570
+ [[package]]
4571
+ name = "windows-targets"
4572
+ version = "0.52.6"
4573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4574
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4575
+ dependencies = [
4576
+ "windows_aarch64_gnullvm",
4577
+ "windows_aarch64_msvc",
4578
+ "windows_i686_gnu",
4579
+ "windows_i686_gnullvm",
4580
+ "windows_i686_msvc",
4581
+ "windows_x86_64_gnu",
4582
+ "windows_x86_64_gnullvm",
4583
+ "windows_x86_64_msvc",
4584
+ ]
4585
+
4586
+ [[package]]
4587
+ name = "windows_aarch64_gnullvm"
4588
+ version = "0.52.6"
4589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4590
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4591
+
4592
+ [[package]]
4593
+ name = "windows_aarch64_msvc"
4594
+ version = "0.52.6"
4595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4596
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4597
+
4598
+ [[package]]
4599
+ name = "windows_i686_gnu"
4600
+ version = "0.52.6"
4601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4602
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4603
+
4604
+ [[package]]
4605
+ name = "windows_i686_gnullvm"
4606
+ version = "0.52.6"
4607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4608
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4609
+
4610
+ [[package]]
4611
+ name = "windows_i686_msvc"
4612
+ version = "0.52.6"
4613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4614
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4615
+
4616
+ [[package]]
4617
+ name = "windows_x86_64_gnu"
4618
+ version = "0.52.6"
4619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4620
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4621
+
4622
+ [[package]]
4623
+ name = "windows_x86_64_gnullvm"
4624
+ version = "0.52.6"
4625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4626
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4627
+
4628
+ [[package]]
4629
+ name = "windows_x86_64_msvc"
4630
+ version = "0.52.6"
4631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4632
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4633
+
4634
+ [[package]]
4635
+ name = "winnow"
4636
+ version = "1.0.3"
4637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4638
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4639
+ dependencies = [
4640
+ "memchr",
4641
+ ]
4642
+
4643
+ [[package]]
4644
+ name = "wit-bindgen"
4645
+ version = "0.57.1"
4646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4647
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4648
+
4649
+ [[package]]
4650
+ name = "writeable"
4651
+ version = "0.6.3"
4652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4653
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4654
+
4655
+ [[package]]
4656
+ name = "wyz"
4657
+ version = "0.5.1"
4658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4659
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4660
+ dependencies = [
4661
+ "tap",
4662
+ ]
4663
+
4664
+ [[package]]
4665
+ name = "xattr"
4666
+ version = "1.6.1"
4667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4668
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4669
+ dependencies = [
4670
+ "libc",
4671
+ "rustix 1.1.4",
4672
+ ]
4673
+
4674
+ [[package]]
4675
+ name = "xz2"
4676
+ version = "0.1.7"
4677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4678
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
4679
+ dependencies = [
4680
+ "lzma-sys",
4681
+ ]
4682
+
4683
+ [[package]]
4684
+ name = "yoke"
4685
+ version = "0.8.3"
4686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4687
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4688
+ dependencies = [
4689
+ "stable_deref_trait",
4690
+ "yoke-derive",
4691
+ "zerofrom",
4692
+ ]
4693
+
4694
+ [[package]]
4695
+ name = "yoke-derive"
4696
+ version = "0.8.2"
4697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4698
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4699
+ dependencies = [
4700
+ "proc-macro2",
4701
+ "quote",
4702
+ "syn 2.0.118",
4703
+ "synstructure",
4704
+ ]
4705
+
4706
+ [[package]]
4707
+ name = "zerocopy"
4708
+ version = "0.8.52"
4709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4710
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
4711
+ dependencies = [
4712
+ "zerocopy-derive",
4713
+ ]
4714
+
4715
+ [[package]]
4716
+ name = "zerocopy-derive"
4717
+ version = "0.8.52"
4718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4719
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
4720
+ dependencies = [
4721
+ "proc-macro2",
4722
+ "quote",
4723
+ "syn 2.0.118",
4724
+ ]
4725
+
4726
+ [[package]]
4727
+ name = "zerofrom"
4728
+ version = "0.1.8"
4729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4730
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4731
+ dependencies = [
4732
+ "zerofrom-derive",
4733
+ ]
4734
+
4735
+ [[package]]
4736
+ name = "zerofrom-derive"
4737
+ version = "0.1.7"
4738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4739
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4740
+ dependencies = [
4741
+ "proc-macro2",
4742
+ "quote",
4743
+ "syn 2.0.118",
4744
+ "synstructure",
4745
+ ]
4746
+
4747
+ [[package]]
4748
+ name = "zeroize"
4749
+ version = "1.9.0"
4750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4751
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4752
+ dependencies = [
4753
+ "zeroize_derive",
4754
+ ]
4755
+
4756
+ [[package]]
4757
+ name = "zeroize_derive"
4758
+ version = "1.5.0"
4759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4760
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
4761
+ dependencies = [
4762
+ "proc-macro2",
4763
+ "quote",
4764
+ "syn 2.0.118",
4765
+ ]
4766
+
4767
+ [[package]]
4768
+ name = "zerotrie"
4769
+ version = "0.2.4"
4770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4771
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4772
+ dependencies = [
4773
+ "displaydoc",
4774
+ "yoke",
4775
+ "zerofrom",
4776
+ ]
4777
+
4778
+ [[package]]
4779
+ name = "zerovec"
4780
+ version = "0.11.6"
4781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4782
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4783
+ dependencies = [
4784
+ "yoke",
4785
+ "zerofrom",
4786
+ "zerovec-derive",
4787
+ ]
4788
+
4789
+ [[package]]
4790
+ name = "zerovec-derive"
4791
+ version = "0.11.3"
4792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4793
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4794
+ dependencies = [
4795
+ "proc-macro2",
4796
+ "quote",
4797
+ "syn 2.0.118",
4798
+ ]
4799
+
4800
+ [[package]]
4801
+ name = "zip"
4802
+ version = "2.4.2"
4803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4804
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
4805
+ dependencies = [
4806
+ "aes",
4807
+ "arbitrary",
4808
+ "bzip2",
4809
+ "constant_time_eq",
4810
+ "crc32fast",
4811
+ "crossbeam-utils",
4812
+ "deflate64",
4813
+ "displaydoc",
4814
+ "flate2",
4815
+ "getrandom 0.3.4",
4816
+ "hmac 0.12.1",
4817
+ "indexmap",
4818
+ "lzma-rs",
4819
+ "memchr",
4820
+ "pbkdf2",
4821
+ "sha1",
4822
+ "thiserror",
4823
+ "time",
4824
+ "xz2",
4825
+ "zeroize",
4826
+ "zopfli",
4827
+ "zstd",
4828
+ ]
4829
+
4830
+ [[package]]
4831
+ name = "zip"
4832
+ version = "6.0.0"
4833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4834
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
4835
+ dependencies = [
4836
+ "arbitrary",
4837
+ "crc32fast",
4838
+ "flate2",
4839
+ "indexmap",
4840
+ "memchr",
4841
+ "zopfli",
4842
+ ]
4843
+
4844
+ [[package]]
4845
+ name = "zlib-rs"
4846
+ version = "0.6.5"
4847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4848
+ checksum = "5431d5661c32445236631278f27946e444ddafe4684cac70b185272d4f9c52d5"
4849
+
4850
+ [[package]]
4851
+ name = "zmij"
4852
+ version = "1.0.21"
4853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4854
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4855
+
4856
+ [[package]]
4857
+ name = "zopfli"
4858
+ version = "0.8.3"
4859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4860
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
4861
+ dependencies = [
4862
+ "bumpalo",
4863
+ "crc32fast",
4864
+ "log",
4865
+ "simd-adler32",
4866
+ ]
4867
+
4868
+ [[package]]
4869
+ name = "zstd"
4870
+ version = "0.13.3"
4871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4872
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4873
+ dependencies = [
4874
+ "zstd-safe",
4875
+ ]
4876
+
4877
+ [[package]]
4878
+ name = "zstd-safe"
4879
+ version = "7.2.4"
4880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4881
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4882
+ dependencies = [
4883
+ "zstd-sys",
4884
+ ]
4885
+
4886
+ [[package]]
4887
+ name = "zstd-sys"
4888
+ version = "2.0.16+zstd.1.5.7"
4889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4890
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4891
+ dependencies = [
4892
+ "cc",
4893
+ "pkg-config",
4894
+ ]